Search results for

NSCocoaErrorDomain

1,063 results found

Post

Replies

Boosts

Views

Activity

Reply to CloudKit + NSPersistentCloudKitContainer: CKError "Service Unavailable" (6/2022); "Request failed with http status code 503"
Today I have different errors! CoreData: error: CoreData+CloudKit: -[NSCloudKitMirroringDelegate _performSetupRequest:]_block_invoke(1106): : Failed to set up CloudKit integration for store: (URL: file:///var/mobile/Containers/Data/Application/7C41756B-0596-4010-B35D-3F98B27F83A7/Library/Application%20Support/com.grantdavisinteractive.Mimir/cloud-library.sqlite) Error Domain=NSCocoaErrorDomain Code=134060 A Core Data error occurred. UserInfo={NSLocalizedFailureReason=The mirroring delegate could not initialize because it's store was removed from the coordinator.} CoreData: error: CoreData+CloudKit: -[NSCloudKitMirroringDelegate recoverFromError:](2115): - Attempting recovery from error: Error Domain=NSCocoaErrorDomain Code=134060 A Core Data error occurred. UserInfo={NSLocalizedFailureReason=The mirroring delegate could not initialize because it's store was removed from the coordinator.} CoreData: error: CoreData+CloudKit: -[NSCloudKitMirroringDelegate recoverFromError:]_block_invoke(2134)
May ’22
Reply to SwiftData and command line
import Foundation import SwiftData @Model class Person { var name: String init(name: String) { self.name = name } } func main() { print(Bundle.main.bundleIdentifier ?? ) // com.northbronson.DataDemo print(Bundle.main.object(forInfoDictionaryKey: CFBundleName) ?? ) // DataDemo let configuration = ModelConfiguration( isStoredInMemoryOnly: true, allowsSave: false ) print(configuration.url) // file:///dev/null // let _ = configuration.url.startAccessingSecurityScopedResource() do { let _ = try ModelContainer( for: Person.self, configurations: configuration ) } catch { // configuration.url.stopAccessingSecurityScopedResource() print(error) } } main() // com.northbronson.DataDemo // DataDemo // file:///dev/null // error: addPersistentStoreWithType:configuration:URL:options:error: returned error NSCocoaErrorDomain (257) // CoreData: error: addPersistentStoreWithType:configuration:URL:options:error: returned error NSCocoaErrorDomain (257) // error: userInfo: // CoreData: error: userInfo: // error: N
Jan ’24
Reply to strange error updating Xcode
Similair error here:Failed to download index with errors: ( Error Domain=NSCocoaErrorDomain Code=3840 The data couldnU2019t be read because it isnU2019t in the correct format. (Encountered unknown tag html on line 2) UserInfo=0x7fd923c88980 {NSDebugDescription=Encountered unknown tag html on line 2, kCFPropertyListOldStyleParsingError=The data couldnU2019t be read because it isnU2019t in the correct format.}, Error Domain=NSCocoaErrorDomain Code=3840 The data couldnU2019t be read because it isnU2019t in the correct format. (Encountered unknown tag html on line 2) UserInfo=0x7fd923285250 {NSDebugDescription=Encountered unknown tag html on line 2, kCFPropertyListOldStyleParsingError=The data couldnU2019t be read because it isnU2019t in the correct format.})I think I'm going to reinstall xcode
Topic: Programming Languages SubTopic: Swift Tags:
Aug ’15
Reply to Error JSONSerialization
I made the correction and now has this error:Error Domain=NSCocoaErrorDomain Code=3840 JSON text did not start with array or object and option to allow fragments not set. UserInfo={NSDebugDescription=JSON text did not start with array or object and option to allow fragments not set.}
Topic: Programming Languages SubTopic: Swift Tags:
Jun ’17
Reply to Keychain retrieval failure
They are getting the below exception:*** Terminating app due to uncaught exception 'NSGenericException', reason: 'Keychain retrieve Error - Error Domain=NSCocoaErrorDomain Code=3840 Cannot parse a NULL or zero-length data UserInfo={NSDebugDescription=Cannot parse a NULL or zero-length data}'
Topic: Privacy & Security SubTopic: General Tags:
Mar ’18
Reply to SiriKit - Failed to attach to process?
Update: I'm getting this in console.log Aug 15 11:43:43 iPhone assistantd(PlugInKit)[12442] <Info>: preparing plug-in <private>(<private>) Aug 15 11:43:43 iPhone assistantd(PlugInKit)[12442] <Notice>: connection to plug-in <private>(0DDA43D4-A588-4478-8405-C219EAA7F591) lost Aug 15 11:43:43 iPhone assistantd(PlugInKit)[12442] <Error>: Hub connection error Error Domain=NSCocoaErrorDomain Code=4097 connection to service named com.appID.SiriKitExtension UserInfo={NSDebugDescription=connection to service named com.appID.SiriKitExtension} Aug 15 11:43:43 iPhone assistantd(PlugInKit)[12442] <Info>: beginUsing of 0DDA43D4-A588-4478-8405-C219EAA7F591 concludes with error=Error Domain=NSCocoaErrorDomain Code=4097 connection to service named com.appID.SiriKitExtension UserInfo={NSDebugDescription=connection to service named com.appID.SiriKitExtension} Aug 15 11:43:43 iPhone assistantd(Foundation)[12442] <Notice>: PlugInKit error in beginUsing: Aug 15 11:
Topic: App & System Services SubTopic: General Tags:
Aug ’16
Reply to Issues getting SwiftData to work with DocumentGroup
DocumentGroup is still broken for me even on the RC beta build. I see the following error: Failed to initialize CloudKit metadata: Error Domain=NSCocoaErrorDomain Code=134407 Request 'FB45661A-3619-4593-A7D1-2E164C9C2667' was cancelled because the store was removed from the coordinator. This doesn't appear on WindowGroup.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Sep ’23
Reply to Contacts Framework Frequently Hangs on iOS 11
Probably I see the same issue on an iPhone 8 Plus with iOS 11.2. The error: service connection to com.apple.contactsd was interrupted. Error communicating with XPC Service: Error Domain=NSCocoaErrorDomain Code=4097 connection to service named com.apple.contactsd UserInfo={NSDebugDescription=connection to service named com.apple.contactsd}
Topic: UI Frameworks SubTopic: AppKit Tags:
Dec ’17
Reply to How to initialize Schema?
Has anyone gotten schema initialization to work with the new initializeCloudKitSchemaWithOptions function? I am always getting an internal CoreData No authToken receive for asset error thrown from this call: Error Domain=NSCocoaErrorDomain Code=134060 A Core Data error occurred. (Dry run option completes without error)
Nov ’20