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.
Post
Replies
Boosts
Views
Activity
I'm seeing the same problem in the general release version of iOS 17
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?
loadFileRepresentation returns a Progress object. Does that give back good progress info while the video is downloading?
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.