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