我有一个非常难以解决的问题。我有这个场景:
我的应用程序使用CoreData存储对象,我想在设备之间实现iCloud同步...而我的应用程序需要一个初始填充的数据库。
我第一次启动我的应用程序时,它将在云上填充我的数据库并标记为YES某些db'fields为“databaseInstalled”。这些字段也在云中同步。
现在当另一台设备第一次启动应用程序时,我希望检索字段“databaseInstalled”以检查是否注入了一些数据,但这是错误的......
如果databaseInstalled为false,我们注入数据,如果databaseInstalled为真,我们等待iCloud同步。
问题是我异步检索persistentStoreCoordinator,因为我不想阻止等待从iCloud下载数据的应用程序......
那么,如果我需要填充数据库或者已经在另一台设备上填充了我以后如何才能知道先验?我只是从iCloud下载已填充的数据库?
- (NSPersistentStoreCoordinator *)persistentStoreCoordinator
{
if((__persistentStoreCoordinator != nil)) {
return __persistentStoreCoordinator;
}
__persistentStoreCoordinator = [[NSPersistentStoreCoordinator alloc] initWithManagedObjectModel: [self managedObjectModel]];
NSPersistentStoreCoordinator *psc = __persistentStoreCoordinator;
// Set up iCloud in another thread:
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
// ** Note: if you adapt this code for your own use, you MUST change this variable:
NSString *iCloudEnabledAppID = @"this is a secret!";
// ** Note: if you adapt this code for your own use, you should change this variable:
NSString *dataFileName = @"you do not have to know.sqlite";
// ** Note: For basic usage you shouldn't need to change anything else
NSString *iCloudDataDirectoryName = @"Data.nosync";
NSString *iCloudLogsDirectoryName = @"Logs";
NSFileManager *fileManager = [NSFileManager defaultManager];
NSURL *localStore = [[self applicationDocumentsDirectory] URLByAppendingPathComponent:dataFileName];
NSURL *iCloud = [fileManager URLForUbiquityContainerIdentifier:nil];
if (iCloud) {
NSLog(@"iCloud is working");
NSURL *iCloudLogsPath = [NSURL fileURLWithPath:[[iCloud path] stringByAppendingPathComponent:iCloudLogsDirectoryName]];
NSLog(@"iCloudEnabledAppID = %@",iCloudEnabledAppID);
NSLog(@"dataFileName = %@", dataFileName);
NSLog(@"iCloudDataDirectoryName = %@", iCloudDataDirectoryName);
NSLog(@"iCloudLogsDirectoryName = %@", iCloudLogsDirectoryName);
NSLog(@"iCloud = %@", iCloud);
NSLog(@"iCloudLogsPath = %@", iCloudLogsPath);
// da rimuovere
//[fileManager removeItemAtURL:iCloudLogsPath error:nil];
#warning to remove
if([fileManager fileExistsAtPath:[[iCloud path] stringByAppendingPathComponent:iCloudDataDirectoryName]] == NO) {
NSError *fileSystemError;
[fileManager createDirectoryAtPath:[[iCloud path] stringByAppendingPathComponent:iCloudDataDirectoryName]
withIntermediateDirectories:YES
attributes:nil
error:&fileSystemError];
if(fileSystemError != nil) {
NSLog(@"Error creating database directory %@", fileSystemError);
}
}
NSString *iCloudData = [[[iCloud path]
stringByAppendingPathComponent:iCloudDataDirectoryName]
stringByAppendingPathComponent:dataFileName];
//[fileManager removeItemAtPath:iCloudData error:nil];
#warning to remove
NSLog(@"iCloudData = %@", iCloudData);
NSMutableDictionary *options = [NSMutableDictionary dictionary];
[options setObject:[NSNumber numberWithBool:YES] forKey:NSMigratePersistentStoresAutomaticallyOption];
[options setObject:[NSNumber numberWithBool:YES] forKey:NSInferMappingModelAutomaticallyOption];
[options setObject:iCloudEnabledAppID forKey:NSPersistentStoreUbiquitousContentNameKey];
[options setObject:iCloudLogsPath forKey:NSPersistentStoreUbiquitousContentURLKey];
[psc lock];
[psc addPersistentStoreWithType:NSSQLiteStoreType
configuration:nil
URL:[NSURL fileURLWithPath:iCloudData]
options:options
error:nil];
[psc unlock];
}
else {
NSLog(@"iCloud is NOT working - using a local store");
NSLog(@"Local store: %@", localStore.path);
NSMutableDictionary *options = [NSMutableDictionary dictionary];
[options setObject:[NSNumber numberWithBool:YES] forKey:NSMigratePersistentStoresAutomaticallyOption];
[options setObject:[NSNumber numberWithBool:YES] forKey:NSInferMappingModelAutomaticallyOption];
[psc lock];
[psc addPersistentStoreWithType:NSSQLiteStoreType
configuration:nil
URL:localStore
options:options
error:nil];
[psc unlock];
}
dispatch_async(dispatch_get_main_queue(), ^{
NSLog(@"iCloud routine completed.");
Setup *install = [[Setup alloc] init];
if([install shouldMigrate]) {
HUD = [[MBProgressHUD alloc] initWithView:self.window.rootViewController.view];
HUD.delegate = self;
HUD.labelText = NSLocalizedString(@"Sincronizzazione del database", nil);
[self.window.rootViewController.view addSubview:HUD];
[HUD showWhileExecuting:@selector(installDatabase) onTarget:install withObject:nil animated:YES];
}
else {
[[NSNotificationCenter defaultCenter] postNotificationName:@"setupCompleted" object:self];
}
//[[NSNotificationCenter defaultCenter] postNotificationName:@"icloudCompleted" object:self userInfo:nil];
[[NSNotificationCenter defaultCenter] postNotificationName:@"setupCompleted" object:self];
});
});
return __persistentStoreCoordinator;
}
答案 0 :(得分:0)
在完成与iCloud的同步之前,您无法知道iCloud中是否会有数据可用。这意味着你有两个选择:
让用户等到同步完成。
启动默认数据库并尽可能合并iCloud中的更改。
使用iCloud,您需要本地数据和云数据之间的strategy for resolving conflicts,因为您必须处理用户可能同时更改多个设备上的数据这一事实。一旦你有了这个,很明显上面的第二个选项是更好的选择:用户可以立即开始使用你的应用程序,并且云中的数据在可用时合并。
答案 1 :(得分:0)
我遇到了同样的问题。
查看我的问题&我对它的回答iCloud + CoreData - how to avoid pre-filled data duplication?
实际上它不能100%正常工作。如果您敢于尝试,我可以向您解释如何使其正常工作(我还没有尝试过)。
考虑到您有大量数据要预先填充我的解决方案现在可能适合您。
答案 2 :(得分:0)
无法确定是否首次打开数据存储。至少不在iCloud Core Data商店。想一想,iCloud也应该脱机工作 - 也就是说,当用户从Internet断开连接然后在恢复连接时上传时,应该缓冲所有更改。没有办法检查数据存储是否已初始化,而不会让用户等待几分钟(或者甚至无限期,如果设备处于脱机状态)来询问iCloud的数据疮副本。
要解决此问题,您需要遵循以下四个简单指南:
您可以在此处阅读更多详细信息:http://cutecoder.org/programming/seeding-icloud-core-data/