1
jjgod 2012-08-29 20:11:55 +08:00
你为啥不直接调用 NSManagedObjectContext 的 -save:?
|
3
jjgod 2012-08-29 20:14:48 +08:00
在 Mac OS X 下是即时的,不知道 iOS 玩了什么花样。
|
5
iYu OP 无耻的最后顶一次
|
6
everbird 2012-08-30 10:15:13 +08:00 1
线索一:http://stackoverflow.com/questions/9789697/why-does-ios-delay-when-saving-core-data-via-a-uimanageddocument
线索二:http://developer.apple.com/library/mac/#documentation/cocoa/conceptual/CoreData/Articles/cdTroubleshooting.html 的Problems with Saving部分第一条SQLite store takes a "long time" to save 只是“不知google之”的结果,未实践,仅供参考 |
7
iYu OP @everbird
@jjgod 昨天弄了一晚上。。首先发现是我测试的问题。因为我是insert以后 就直接Cmd-R来重新运行程序。所以,不是正常退出程序。发现这个问题以后。 目前 解决方法 - (void)applicationDidEnterBackground:(UIApplication *)application { // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. [self saveContext]; } - (void)applicationWillTerminate:(UIApplication *)application { // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. [self saveContext]; } - (void)saveContext { OMPCoreDataManager *dataManager = [OMPCoreDataManager shareOMPCoreDataManager]; NSManagedObjectContext *managedObjectContext = dataManager.ompDatabase.managedObjectContext; if (managedObjectContext != nil) { [managedObjectContext performBlock:^{ NSError *error = nil; if ([managedObjectContext hasChanges] && ![managedObjectContext save:&error]) { // Replace this implementation 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(); } }]; } } 用了类似这样的解决方法。看stackoverflow上说并不能保证100%的正确性。不够我测试了一下真机上 应该没有问题。 |