Hello,
I have an app on the App Store built around WeatherKit and it was working fine, up until this morning when I started seeing errors when using the app.
When debugging using Xcode I see the familiar error
Failed to generate jwt token for: com.apple.weatherkit.authservice with error: Error Domain=WeatherDaemon.WDSJWTAuthenticatorServiceListener.Errors Code=2 "(null)"
which, according to what I've read on the forums looks like an authentication error.
Attaching a network debugger to the Simulator, I saw this error:
This I have tried:
Verify that WeatherKit is enabled on both Capabilities and App Services tabs on the Dev Portal.
Toggle on/off this value and regenerate Provisioning Profiles
Uninstall/reinstall
Checking that I have API available calls.
Nothing. If I create a new Bundle ID and sign with that, it works correctly. But this is not an option since that will force all my customers to download everything from scratch.
I am getting emails from customers demanding money back and I can't figure out what has happened.
The only thing I can think of, is that I started developing an Apple Watch app to complement the iOS app, but that was last week and everything was working fine.
Post
Replies
Boosts
Views
Activity
On a UISplitViewController initialised with a .doubleColumn, from the primaryVC you can change what's displayed on the secondary column with a simple showDetailViewController(vc, sender: self)
However, even changing the SplitVC to a triple column, this behaviour seems to be kept: meaning that it still pushes the passed VC to the .secondary column instead of the .supplementary
This seems pretty simple to achieve subclassing UISplitViewController and overriding showDetailViewController but I wanted to see if there's anything out of the box that would work like this
Thanks!