I had this issue and for my, the fix was to use the builder syntax in the AppShortcutsProvider, not returning an array.
https://gist.github.com/HunterHillegas/92839a14c2b24572f6ff2aca0460f3c5
Post
Replies
Boosts
Views
Activity
I'm seeing the same thing in my code.
I only run it when I know I've changed something.
As far as technique, you need to be really thoughtful with your CloudKit schema since you are limited in what can change in production.
Go watch the session from this year, Evolve your Core Data schema, for some suggestions and thoughts.
I don't know of a specific tutorial but basically what you want to do is to define a model with these properties that is "Codable" (you can look this up - it will help you move back and forth between instances of the model and the JSON data) and then use URLSession to get data from the network and tell JSONDecoder to use your codable model to decode the data. The model specification and networking code is probably ~20 lines of code total, maybe less. Then you can use it with SwiftUI or in any other way needed.
From these errors, the compiler seems very confused. Probably need to see the call site(s) to give any suggestions.
Yeah, I actually opened a DTS case for this and while it hasn't been updated in awhile, I basically got the vibe that there wasn't totally complete API support for what I wanted to do.
This is not currently supported by TabView.
I'd suggest you file a feedback asking for this functionality.
If you really do need this, you'd need to implement it yourself, perhaps by custom wrapping UITabBarController but that'll be a bit of work depending on how many features you need.
Since I wrote the above post, I've been trying to get it to work with the focus system and it feels like I'm so close, just can't quite get it there.
If anyone has any tips, they would be much appreciated.
Hmmm. Should I be using the Focus System for this?
Odd. Yes, works for me with their sample and in my own project.
I had this happen with Google Sheets but only that once so I haven't yet filed a FB.
This really sounds like a bug - I’d encourage you to submit a Feedback with the above sample code - limited time to get bugs fixed in this release cycle!
Seeing the same thing here. I'll dupe your FB.
I'm having this same issue. What is an App Store Connect 'developer profile'? I've never heard of such a thing and a search turned up nothing.
Compiling against beta 2 and I figured this out. Turns out I was setting my Spotlight delegate before setting the persistent history tracking attribute. Well, setting the Spotlight delegate must open the store and that's where this was coming from... this asserted in b2 making it obvious. The fix was to re-arrange the code so the Spotlight delegate is set last.