How do I get errors from the simulator when something is wrong with the pkpass file? I have a 'good' version of my pass.json that drags into the simulator without issues. I have a different version that does nothing, so clearly something is wrong with the JSON, but I can't find what.In the simulator I've done Debug -> Open System Log but when I drag in the bad pkpass file, nothing is displayed.
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
I'm trying to debug some connectivity issues on real devices and can't figure out how to do so. If I plug in the phone and then run that scheme it starts up. If I then switch the scheme to the watch and run, the phone debugging stops and I just have the watch.
How do I get both at once so I can see messages from each device?
In my watchOS extension, I'm using the WKUserNotificationHostingController. If I override isInteractive and return true, how do I allow for opening the app?
Essentially I want to know how to make the app open when tapping on specific elements of the custom View which is displayed.
In previous versions I'd just call the performNotificationDefaultAction method on the WKUserNotificationInterfaceController.
When my SwiftUI based watch app responds to an WKSnapshotRefreshBackgroundTask, how do I change the navigation stack? Before using SwiftUI we'd just do this:
if let root = WKExtension().shared.rootInterfaceController {
		root.pushController(withName: "Controller1", context: nil)
		root.pushController(withName: "Controller2", context: nil)
}
And now I'd have the screen I wanted. Not sure how to accomplish that same thing with SwiftUI