iOS 9 CoreData / ICloud - нет такого документа по URL
ОБНОВЛЕНИЕ 2
Я также иногда получаю эту ошибку:
CoreData: Ubiquity: Librarian returned a serious error for starting downloads Error Domain=BRCloudDocsErrorDomain Code=6
Мне интересно, связано ли это? Я работаю над отправкой сообщения об ошибке, но буду признателен за любую информацию.
ОБНОВИТЬ
Когда возникает эта ошибка, я получаю очень странное поведение с coredata, когда он не может найти связанные объекты в том же контексте. Это абсолютно калечит мое приложение сейчас
ОРИГИНАЛЬНЫЙ ВОПРОС
У меня есть приложение, которое, кажется, отлично работает в 90% случаев, синхронизируя CoreData с iCloud Ubiquitous Storage.
Иногда я получаю эту ошибку, и все начинает немного сходить с ума:
CoreData: Ubiquity: Librarian returned a serious error for starting downloads Error Domain=BRCloudDocsErrorDomain Code=5 "No document at URL"
Я искал, чтобы найти информацию о том, как это исправить, но я не вижу ничего, что помогло бы мне в других вопросах, которые были опубликованы. Многие люди просто заявляют, что они просто перестали пытаться это исправить.
Кто-нибудь может увидеть какие-либо проблемы с моим основным стеком данных, которые могут вызвать это?! Я чувствую, что я принимаю сумасшедшие таблетки.
// MARK: - Core Data stack
lazy var managedObjectModel: NSManagedObjectModel = {
// The managed object model for the application. This property is not optional. It is a fatal error for the application not to be able to find and load its model.
let modelURL = NSBundle.mainBundle().URLForResource("Model", withExtension: "momd")!
return NSManagedObjectModel(contentsOfURL: modelURL)!
}()
lazy var persistentStoreCoordinator: NSPersistentStoreCoordinator? = {
// The persistent store coordinator for the application. This implementation creates and return a coordinator, having added the store for the application to it. This property is optional since there are legitimate error conditions that could cause the creation of the store to fail.
// Create the coordinator and store
var coordinator: NSPersistentStoreCoordinator? = NSPersistentStoreCoordinator(managedObjectModel: self.managedObjectModel)
let documentsDirectory = NSFileManager.defaultManager().URLsForDirectory(NSSearchPathDirectory.DocumentDirectory, inDomains: NSSearchPathDomainMask.UserDomainMask).last as NSURL!
let storeURL = documentsDirectory.URLByAppendingPathComponent("ArrivedAlive.sqlite")
var error: NSError? = nil
var failureReason = "There was an error creating or loading the application's saved data."
let storeOptions = [NSPersistentStoreUbiquitousContentNameKey: "ArrivedAliveStore", NSMigratePersistentStoresAutomaticallyOption: true, NSInferMappingModelAutomaticallyOption: true]
do {
try coordinator!.addPersistentStoreWithType(NSSQLiteStoreType, configuration: nil, URL: storeURL, options: storeOptions)
} catch var error1 as NSError {
error = error1
coordinator = nil
// Report any error we got.
var dict = [String: AnyObject]()
dict[NSLocalizedDescriptionKey] = "Failed to initialize the application's saved data"
dict[NSLocalizedFailureReasonErrorKey] = failureReason
dict[NSUnderlyingErrorKey] = error
error = NSError(domain: "YOUR_ERROR_DOMAIN", code: 9999, userInfo: dict)
// Replace this with code to handle the error appropriately.
// abort() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development.
NSLog("Unresolved error \(error), \(error!.userInfo)")
abort()
} catch {
fatalError()
}
return coordinator
}()
lazy var managedObjectContext: NSManagedObjectContext? = {
// Returns the managed object context for the application (which is already bound to the persistent store coordinator for the application.) This property is optional since there are legitimate error conditions that could cause the creation of the context to fail.
let coordinator = self.persistentStoreCoordinator
if coordinator == nil {
return nil
}
var managedObjectContext = NSManagedObjectContext(concurrencyType: NSManagedObjectContextConcurrencyType.MainQueueConcurrencyType)
managedObjectContext.mergePolicy = NSMergeByPropertyObjectTrumpMergePolicy
managedObjectContext.persistentStoreCoordinator = coordinator
return managedObjectContext
}()
1 ответ
Для тех из вас, кто борется с этими проблемами - позвольте мне дать вам несколько хороших новостей:
Чтобы решить проблему, выполните следующие действия:
- Скачать и внедрить ансамбль GitHub
- Добавьте очень небольшое количество кода в ваш appDelegate для создания и управления объектом ансамбля
- Выкрикни свое неудовлетворенное разочарование - все готово.
Это исправило все ошибки облачной синхронизации
Это просто работает как волшебство, и я не могу быть счастливее. По сути, он работает как посредник между основными данными и iCloud, чтобы быть уверенным, что ни у кого не возникнет приступа.