In an app ported to Mac Catalyst, the camera interface always turned out to be blank.I have checked: the capabilities includes "Camera", the privacy setting in info.plist is there (the iPad app shows the camera fine), and I even try to include front camera for UIImagePickerController. if UIImagePickerController.isSourceTypeAvailable(.camera) { let imagePicker = UIImagePickerController() imagePicker.sourceType = .camera imagePicker.delegate = self imagePicker.cameraDevice = .front // added for Mac self.present(imagePicker, animated:true, completion:nil) }The error I got is: "[Generic] Could not create video device input: Error Domain=AVFoundationErrorDomain Code=-11814"
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
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.
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!
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?
I wish to support Mac with my iPhone/iPad app using Mac Catalyst. Our app shows widgets on iPhone/iPad home screen properly.
Using Mac Catalyst is straight forward (except to exclude all ActivityKit codes). However, although the app shows up and work perfectly, I can't see the widgets in notification center. Separate compile the widget extensions show no errors but nothing is shown. Also tried build separately, drag into Applications folder, run the build and the widgets are not shown.
Any suggestions? Using the Xcode 14.2 and macOS 13.1.
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.
Hi,
I have an iPad app that has menus, like:
CommandGroup(replacing: .help) {
Button("Help") { showHelp = true }
.keyboardShortcut("/")
}
They works fine in iPad and also if compiled to Mac Catalyst, but will crash on Apple Silicon Mac when selected the menu items with errors like:
[General] -[_UIEditMenuInteractionMenuController propertyList]: unrecognized selector sent to instance 0x600000190540
I did not use storyboard and only use SwiftUI. Any suggestions?
Note: of course the best solution is to compile to Mac Catalyst, but the app has some other issues when run in Mac Catalyst. So I can only release it as iPad app.
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?
Is there a way to request review for Mac Monterey and Ventura? Hopefully compatible with iOS too?
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?
While runninf Apple Foundation Model in iPhone simulator, I got this error:
IPC error: Underlying connection interrupted
What does this mean? Related to foundation model?
Topic:
Machine Learning & AI
SubTopic:
Foundation Models
I have been using "apple" to test foundation models.
I thought this is local, but today the answer changed - half way through explanation, suddenly guardrailViolation error was activated! And yesterday, all reference to "Apple II", "Apple III" now refers me to consult apple.com!
Does foundation models connect to Internet for answer? Using beta 3.
Topic:
Machine Learning & AI
SubTopic:
Foundation Models
Text(...).textSelection(.enabled) does not work on iPhone and iPad, but works on Mac.
Topic:
UI Frameworks
SubTopic:
SwiftUI
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