Post

Replies

Boosts

Views

Activity

Reply to Watch app built with Xcode 12 b6 crashes on watchOS 6.2
It seems to be something to do with FetchRequest… if I comment that out, the rest of the app runs fine. I have a second List and FetchRequest in my app that also crash. I don’t know if it’s related to the other crash, but it has a different error so I’m attaching that here along with some code. struct RecentlyDeletedView: View {     @Environment(\.managedObjectContext) var managedObjectContext     @FetchRequest(         fetchRequest: CheatManager.deletedCheatFetchRequest()     ) var cheats: FetchedResults<CSCheat>          var body: some View {         List(cheats, id:\.self) { cheat in             NavigationLink(destination: DeletedDetailView(cheat: cheat)) {                 CheatRow(cheat: cheat)             }         }         .navigationBarTitle("Recently Deleted")     } } So it looks like both crashes occur when I try to call/use fetchRequest.wrappedValue in a View body. It could be an issue with my model or the CSCheat object, which is an Obj-C class? I don’t think it’s that I’m using an NSFetchRequest to build my FetchRequest — I tried replacing it and that still failed: &#9;&#9;@FetchRequest( &#9;&#9;&#9;&#9;entity: CSCheat.entity(), sortDescriptors: [] &#9;&#9;) var cheats: FetchedResults<CSCheat> Other crash (simulator) - https://developer.apple.com/forums/content/attachment/e70f93d3-6e57-4fc8-8369-a3a8fd247995
Aug ’20
Reply to CloudKit watchOS 6 silent notification problem
I’m still having trouble with CloudKit notifications on watchOS 6.2. I did everything @ppix suggested, which got notifications partly working — my watch app does receive CloudKit remote notifications, but only when it is active. If I push changes to CloudKit while the app is inactive, nothing happens; if I then open the app, the notification is immediately delivered. I would expect CloudKit notifications to wake my app so it can sync in the background — is that working for anyone?
Jul ’20
Reply to Uploading Mac Catalyst build incorrectly failed for Private API use related to Security framework
I'm still seeing a similar error. This is from last night:ITMS-90338: Non-public API usage - The app references non-public symbols: _IOObjectRelease, _IORegistryEntryCreateCFProperty, _IORegistryEntryFromPath, _kIOMasterPortDefault,…Those are all public symbols in IOKit for Mac. I haven't touched any of this code, which pass submission dozens of times before this past weekend when this error appeared. I'll file a complaint with Apple, since they don't seem to have fixed this problem for everyone.
Mar ’20