I wish to include some recommendation app links in our app, but when upload to App Store I got this message: ITMS-90863: Apple silicon Macs support issue - The app uses symbols that are not present on Mac:
Is it possible to bypass those codes in Apple Silicon Macs with SwiftUI? I can't check for #if os since for Apple Silicon Macs, this is an iPad app.
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
In the process of converting our SwiftUI app to Mac Catalyst, we found that although the app works fine in macOS 13, it is very buggy in macOS 12 (menu does not get refreshed when enable/disable, color palette does not work properly, localized text does not show up in menu, etc).
Is there release notes for Mac Catalyst running on different macOS releases? And how do we disable features that don't work on older OS? Thanks!
Is there a way to request review for Mac Monterey and Ventura? Hopefully compatible with iOS too?
This is my code:
CommandGroup(before: .printItem) {
ShareLink(item: answer)
.disabled(answer.isEmpty)
}
It works fine on Mac, when selecting the share menu from Mac, it works. But when select from iPad menu bar, nothing shows up.
Topic:
UI Frameworks
SubTopic:
SwiftUI
I have this in my swift file:
CommandGroup(replacing: .textFormatting) {
Toggle("Bold Text", systemImage: "bold", isOn: boldBinding)
.keyboardShortcut("B")
Button("Align Left", systemImage: "text.alignleft") { alignmentBinding.wrappedValue = 1 }
.keyboardShortcut("[")
Button("Align Center", systemImage: "text.aligncenter") { alignmentBinding.wrappedValue = 0 }
.keyboardShortcut("\\")
Button("Align Right", systemImage: "text.alignright") { alignmentBinding.wrappedValue = 2 }
.keyboardShortcut("]")
}
Nothing appeared in iPadOS menu (but does appeared on Mac).
Change textFormatting to textEditing does work, but appeared in a very long menu
Topic:
UI Frameworks
SubTopic:
SwiftUI
Vision Pro or Vision Pro 2732x2048? Which one is larger?
My iMac is very slow, so I wanted to use the smaller one.
Topic:
Developer Tools & Services
SubTopic:
Xcode
Found this option under macOS 11.0 deployment:Show "Designed for iPad" Run Destination
What does this mean?
Hi,
How do you add a new app to an existing App Bundle? There is no add button. I have also tried removing from sale first and the result is the same.
Topic:
App Store Distribution & Marketing
SubTopic:
App Store Connect
Tags:
App Store Connect
Bundle ID
Hi,
When I put Toggle button and divider() in
CommandGroup(replacing: .textFormatting) {
Toggle("Toggle Toolbar", isOn: $toolbar).keyboardShortcut("T")
Divider()
}
On macOS 12/13, the Toggle Button is simply display as a button (with no checkbox or other indicators), and Divider is not shown.
Is this a bug or I need to add in some modifiers?
Localization works fine in macOS 13, but not in macOS 12 menu (still show English while in localized language). Is it possible to make it work in macOS 12?
CommandGroup(after: .appInfo) {
Button("About Company") { showAppsSheet = true }
}
Tried setting the name in LocalizedStringKey then put in Button but does not work.
If you set the alignment to center or right alignment, the text will fly to the left when editing. This works for iPhone/iPad but not Mac Catalyst.
Is this a know bug? If yes is there a workaround?
Does Vision Pro works with widgets? If yes, how?
Is ARKit for spatial computing for Vision Pro only? Or it works on exisiting ARKit hardware like iPhone and iPad?
I found that all my existing ARKit apps do not work on Vision Pro simulator, thus I am interested to know whether I am rewriting my apps for Vision Pro only, or upgrade for existing platforms too?
I have a watch app that I have been distributed for years. But on recent Xcode 15.0.1, I started having problem:
Using a eligible provision profile, I started distribute app via TestFlight and App Store, and i got:
Automatic signing cannot register bundle identifier "com.virtualgs.invaders.watchkitapp.watchkitextension".
Automatic signing cannot register bundle identifiers with Apple. Register your bundle identifier on https://developer.apple.com/account and then try again.
No profiles for 'com.virtualgs.invaders.watchkitapp.watchkitextension' were found
Xcode couldn't find any iOS App Store provisioning profiles matching 'com.virtualgs.invaders.watchkitapp.watchkitextension'.
But it has gone up for many years! Any ideas?
Works on Mac, but not on iPhone/iPad.
Is this a bug?
Topic:
UI Frameworks
SubTopic:
SwiftUI