Post

Replies

Boosts

Views

Activity

MailKit API Documentation
Does any have anyone have documentation on the usage related to the forMessageContext and messageContext parameters and for the methods below? This is undocumented while public making it an unusable API. func extensionViewController(messageContext: Data) -> MEExtensionViewController? func primaryActionClicked(forMessageContext context: Data) async -> MEExtensionViewController? The APIs are located here but lack any kind of proper documentation and examples https://developer.apple.com/documentation/mailkit/memessagesecurityhandler/3882908-extensionviewcontroller
0
0
908
Nov ’21
General NavigationView & List State during device rotation
In the Earthquakes, example project & also mine I have noticed that view state is lost during device rotation. In portrait mode, the Table View / List is shown by default and in landscape mode, the pushed or detail view is shown instead. One how do you prevent the lost item selection in the landscape orientation when the detailed view is being loaded first without the primary List View to provide it with the incoming data? This is the current behaviour in the Earthquakes if anyone needs a code reference.
1
1
516
Jan ’22
Xcode 13.2.1 Safari 15.3 w/macOS 12.2 is Very unstable
After upgrading to the latest masOS 12.2(no release notes, undocumented release), Safari is no longer able to login to the forums and a few other sites, most likely due to the amount of redirects taking place. Just follow the redirects and stop counting them, Xcode 13.2.1 will go belly up and freeze, then finder, then everything else that's running. @apple, @appledevsupport
0
0
835
Jan ’22
Watch App - Only runs via Xcode
I'm seeing an issue where a watch extension was added to an existing iOS app which only runs via Xcode, any attempt to run it without Xcode results in the watchApp closing on launch. Any suggestions on what could be the issue? Xcode 13.2.1, macOS 11.6.5, WatchOS sim 7.0, deployment target 7.0
0
0
1.1k
Feb ’22
SwiftUI iPad Landscape Only
@Apple How do you set an iPad swiftUI app to Landscape only seeing that the Xcode supportedInterfaceOrientations flag is ignored by swiftUI. The following doesn't work via the UIApplicationDelegateAdapter when the 2 methods are implemented. func application(_ application: UIApplication, supportedInterfaceOrientationsFor window: UIWindow?) -> UIInterfaceOrientationMask {             .landscape         }       func supportedInterfaceOrientations(for window: UIWindow?) -> UIInterfaceOrientationMask {             .landscape         }
2
0
1.4k
Apr ’22