Как синхронизировать данные между двумя устройствами с использованием Core Data & iCloud?
То, что я пытаюсь достичь, - это когда пользователь создает, изменяет или удаляет данные на persistent store
, он будет синхронизироваться с iCloud store
, а затем обновлять другие устройства, входящие в ту же учетную запись iCloud.
Я создал Core Data Stack
с помощью ресурсов Objective-C и попытался написать свой собственный в Swift, но у меня возникают проблемы с синхронизацией данных с использованием двух устройств, зарегистрированных в одной учетной записи iCloud.
Например, когда iDevice A записывается в iCloud, он будет поддерживать данные в iCloud, но когда iDevice B войдет в iCloud, приложение удалит любые данные, уже находящиеся в постоянном хранилище, чтобы сохранить iCloud назад и любые изменения между устройствами хранилища не отображаются на другом, но, похоже, сохраняются в хранилище iCloud в качестве последней резервной копии, поэтому, если приложение будет удалено и переустановлено, я вижу последнюю резервную копию, сделанную другим устройством - с этим в виду, что если iDevice B уже был зарегистрирован, он не будет использовать данные из iDevice A, если приложение не было переустановлено, а последнее резервное копирование было выполнено другим устройством.
Кто-нибудь знает, где я ошибаюсь в Core Data Stack
, чтобы синхронизировать данные между двумя устройствами, используя одну и ту же учетную запись iCloud?
Базовый стек данных:
// MARK: - Core Data stack
// All the following code is in my appDelgate Core data stack
func observeCloudActions(persistentStoreCoordinator psc: NSPersistentStoreCoordinator?) {
// Register iCloud notifications observers for;
//Stores Will change
//Stores Did Change
//persistentStoreDidImportUbiquitousContentChanges
//mergeChanges
}
//Functions for notifications
func mergeChanges(notification: NSNotification) {
NSLog("mergeChanges notif:\(notification)")
if let moc = managedObjectContext {
moc.performBlock {
moc.mergeChangesFromContextDidSaveNotification(notification)
self.postRefetchDatabaseNotification()
}
}
}
func persistentStoreDidImportUbiquitousContentChanges(notification: NSNotification) {
self.mergeChanges(notification);
}
func storesWillChange(notification: NSNotification) {
NSLog("storesWillChange notif:\(notification)");
if let moc = self.managedObjectContext {
moc.performBlockAndWait {
var error: NSError? = nil;
if moc.hasChanges && !moc.save(&error) {
NSLog("Save error: \(error)");
} else {
// drop any managed objects
}
moc.reset();
}
NSNotificationCenter.defaultCenter().postNotificationName("storeWillChange", object: nil)
}
}
func storesDidChange(notification: NSNotification) {
NSLog("storesDidChange posting notif");
self.postRefetchDatabaseNotification();
//Sends notification to view controllers to reload data NSNotificationCenter.defaultCenter().postNotificationName("storeDidChange", object: nil)
}
func postRefetchDatabaseNotification() {
dispatch_async(dispatch_get_main_queue(), { () -> Void in
NSNotificationCenter.defaultCenter().postNotificationName("storeDidChange", object: nil)
})
}
// Core data stack
lazy var applicationDocumentsDirectory: NSURL = {
// The directory the application uses to store the Core Data store file. This code uses a directory named "hyouuu.pendo" in the application documents Application Support directory.
let urls = NSFileManager.defaultManager().URLsForDirectory(.DocumentDirectory, inDomains: .UserDomainMask)
return urls[urls.count-1] as! NSURL
}()
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("AppName", withExtension: "momd")!
NSLog("modelURL:\(modelURL)")
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("CoreData.sqlite")
NSLog("storeURL:\(storeURL)")
let storeOptions = [NSPersistentStoreUbiquitousContentNameKey:"AppStore"]
var error: NSError? = nil
var failureReason = "There was an error creating or loading the application saved data."
if coordinator!.addPersistentStoreWithType(
NSSQLiteStoreType,
configuration: nil,
URL: storeURL,
options: storeOptions,
error: &error) == nil
{
coordinator = nil
// Report any error we got.
let dict = NSMutableDictionary()
dict[NSLocalizedDescriptionKey] = "Failed to initialize the application saved data"
dict[NSLocalizedFailureReasonErrorKey] = failureReason
dict[NSUnderlyingErrorKey] = error
error = NSError(domain: "Pendo_Error_Domain", code: 9999, userInfo: dict as [NSObject : AnyObject])
// 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("AddPersistentStore error \(error), \(error!.userInfo)")
}
self.observeCloudActions(persistentStoreCoordinator: coordinator)
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
Это, как у меня есть моя настройка, и она синхронизирует мои основные данные и сохраняет синхронизацию изменений.
![введите описание изображения здесь]()
Это из моего AppDelegate.
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 url = self.applicationDocumentsDirectory.URLByAppendingPathComponent("APPNAME.sqlite")
var error: NSError? = nil
var failureReason = "There was an error creating or loading the application saved data."
// iCloud store
var storeOptions = [NSPersistentStoreUbiquitousContentNameKey : "APPNAMEStore",NSMigratePersistentStoresAutomaticallyOption: true,
NSInferMappingModelAutomaticallyOption: true]
// iCloud storeOptions need to be added to the if statement
do {
try coordinator!.addPersistentStoreWithType(NSSQLiteStoreType, configuration: nil, URL: NSURL.fileURLWithPath(url.path!), 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 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
}()
// MARK: - iCloud
// This handles the updates to the data via iCLoud updates
func registerCoordinatorForStoreNotifications (coordinator : NSPersistentStoreCoordinator) {
let nc : NSNotificationCenter = NSNotificationCenter.defaultCenter();
nc.addObserver(self, selector: "handleStoresWillChange:",
name: NSPersistentStoreCoordinatorStoresWillChangeNotification,
object: coordinator)
nc.addObserver(self, selector: "handleStoresDidChange:",
name: NSPersistentStoreCoordinatorStoresDidChangeNotification,
object: coordinator)
nc.addObserver(self, selector: "handleStoresWillRemove:",
name: NSPersistentStoreCoordinatorWillRemoveStoreNotification,
object: coordinator)
nc.addObserver(self, selector: "handleStoreChangedUbiquitousContent:",
name: NSPersistentStoreDidImportUbiquitousContentChangesNotification,
object: coordinator)
}
Ответ 2
Разница, которую я вижу между тем, что работает для меня и вашего кода:
1) Я не вижу, где вы добавили наблюдателя для NSPersistentStoreDidImportUbiquitousContentChangesNotification, например, в код:
let nc : NSNotificationCenter = NSNotificationCenter.defaultCenter();
let appDelegate = UIApplication.sharedApplication().delegate as! AppDelegate
nc.addObserver(self, selector: "dataUpdated:",
name: NSPersistentStoreDidImportUbiquitousContentChangesNotification,
object: self.managedObjectContext?.persistentStoreCoordinator)
2) В моем коде функции, которая улавливает уведомление (dataUpdated в этом случае), он сбрасывает управляемый контекст objext со следующим кодом, прежде чем он обновит отображение, чтобы показать новые данные:
let appDelegate = UIApplication.sharedApplication().delegate as! AppDelegate
if let managedObjectContext = appDelegate.managedObjectContext {
managedObjectContext.reset()
}
После сброса контекста управляемого объекта я снова получаю объект, используя код:
let fetchRequest = NSFetchRequest(entityName: "ClassNameHere")
let sortDescriptor = NSSortDescriptor(key: "name", ascending: true)
fetchRequest.sortDescriptors = [sortDescriptor]
let fetchResults = managedObjectContext!.executeFetchRequest(fetchRequest, error: nil) as! [ClassNameHere]