Post

Replies

Boosts

Views

Activity

Reply to 5.5" iPhone Display Size Intersect iOS 17 = NULL Set
Apple's answer is below this line. Some screenshots are always required. Even though your app will not run on those devices, it will still be displayed and just say it is not downloadable on that device. Also, 5.5 screenshots are used for scaling up and down depending on the users device and what screenshots the developer has or has not provided. For a list of required screenshots, you can visit the link below: https://developer.apple.com/help/app-store-connect/reference/screenshot-specifications
Oct ’23
Reply to Could Not Launch Mac (Designed for iPad) App in Xcode
Here's more info on this. Could not launch “MyAppName” Domain: IDELaunchErrorDomain Code: 20 Recovery Suggestion: Runningboard has returned error 5. Please check the system logs for the underlying cause of the error. User Info: { DVTErrorCreationDateKey = "2023-09-27 03:23:51 +0000"; DVTRadarComponentKey = 968756; IDERunOperationFailingWorker = IDELaunchServicesLauncher; } The operation couldn’t be completed. Launch failed. Domain: RBSRequestErrorDomain Code: 5 Failure Reason: Launch failed. Launchd job spawn failed Domain: NSPOSIXErrorDomain Code: 153
Sep ’23
Reply to Ornament Toolbar disappears
I am experiencing a similar issue. I have a UIKit MapViewController() where I declare a UIHostingOrnament. This is one view of a SwiftUI TabView. I have the below code in my viewIsAppearing. #if os(visionOS) mapView = MKMapView(frame: CGRect(x: 0, y: 0, width: view.frame.width, height: view.frame.height)) let ornament = UIHostingOrnament(sceneAnchor: .bottom, contentAlignment: .center) { ToolbarView() .glassBackgroundEffect() } self.ornaments = [ornament] #else Do other stuff here #endif When I select the tab for the Map View the first time, I see the ornament at the bottom, but when I select another tab and then select the Map tab, the ornament has disappeared. I can see that the viewIsAppearing is executing every time I click on the Map tab.
Sep ’23