Post

Replies

Boosts

Views

Activity

Reply to Crashing when trying to use NSFetchedResultsController fetchedObjects
I still get random EXC_BAD_ACCESS crashing in iOS 14.7 using fetchedObjects or even using object(at:).     let batch = (beforeUpdate..<afterUpdate).map { controller.object(at: .init(row: $0, section: 0)) } The weird thing right after the crash in the debugger I can access the object at that row without problem: (lldb) p controller.fetchedObjects![$0] (NSFetchRequestResult) $R9 = (object = 0x0000000280fac9b0) (lldb) p $0 (Int) $R7 = 200 (lldb) p controller.object(at: .init(row: $0, section: 0)) as? NSManagedObject (NSManagedObject?) $R6 = 0x0000000280fac9b0 {   baseCDContact@0 = { The good news is that this issue seems to be fixed in the iOS 15 beta...
Topic: App & System Services SubTopic: Core OS Tags:
Aug ’21
Reply to iCloud Private Relay testing and router based VPN
@meaton iCloud Private Relay is giving users a false of security to users if there are no settings to enforce its use. (i.e. no safari if iCloud Private Relay is not available)
Replies
Boosts
Views
Activity
Mar ’22
Reply to iOS 14 crash in NSFetchedResultsController's indexPathForObject function
Seems to be the same issue as https://developer.apple.com/forums/thread/7628
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Aug ’21
Reply to Crashing when trying to use NSFetchedResultsController fetchedObjects
I still get random EXC_BAD_ACCESS crashing in iOS 14.7 using fetchedObjects or even using object(at:).     let batch = (beforeUpdate..<afterUpdate).map { controller.object(at: .init(row: $0, section: 0)) } The weird thing right after the crash in the debugger I can access the object at that row without problem: (lldb) p controller.fetchedObjects![$0] (NSFetchRequestResult) $R9 = (object = 0x0000000280fac9b0) (lldb) p $0 (Int) $R7 = 200 (lldb) p controller.object(at: .init(row: $0, section: 0)) as? NSManagedObject (NSManagedObject?) $R6 = 0x0000000280fac9b0 {   baseCDContact@0 = { The good news is that this issue seems to be fixed in the iOS 15 beta...
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Aug ’21