Post

Replies

Boosts

Views

Activity

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 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.
Topic: App & System Services SubTopic: Core OS Tags:
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?
Replies
Boosts
Views
Activity
Jul ’22
Reply to iOS 17 beta 8 crash UIPrintPanelNavigationController
I'm seeing the same problem in the general release version of iOS 17
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Sep ’23
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.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Sep ’23