Post

Replies

Boosts

Views

Activity

Reply to iOS 17 beta 8 crash UIPrintPanelNavigationController
I was overriding present to force iPhone to present with full screen: class NavigationController: UINavigationController { // force everything presented to be presented fullscreen on iPhone but NOT on iPad override func present(_ viewControllerToPresent: UIViewController, animated flag: Bool, completion: (() -> Void)? = nil) { if UIDevice.current.userInterfaceIdiom == .phone { viewControllerToPresent.modalPresentationStyle = .fullScreen } super.present(viewControllerToPresent, animated: flag, completion: completion) } } When I stopped doing that the problem went away.
Sep ’23
Reply to Error Fetching App Record on Validate
Same here (Xcode Version 13.4.1 (13F100): Fetching app record -> Error Fetching App Record (App record request failed with error: "Unexpected Status Code") I've tried restarting Xcode, restarting computer, removing / re-adding my credentials, but no luck. I've seen it failing for all sorts of reasons this morning... Maybe Apple are having server issues?
Jul ’22
Reply to Load video from PHPhotoPicker without photo library permissions?
I'm also trying to figure this out. Also, how does getting a url to the video help with downloading it if it is on the cloud and not on your device? Is the new photo picker suitable for apps that allow selecting multiple photos/videos and putting them together into a single project? This requires being able to download multiple photos/videos (showing progress) and then manipulating the photos as UIImages and the videos as AVAssets. I have a bunch of photo/video apps and am struggling to see my way through all this without just asking the user to please give access to all photos.
Jul ’20