V2EX = way to explore
V2EX 是一个关于分享和探索的地方
Sign Up Now
For Existing Member  Sign In
iOS 开发实用技术导航
NSHipster 中文版
http://nshipster.cn/
cocos2d 开源 2D 游戏引擎
http://www.cocos2d-iphone.org/
CocoaPods
http://cocoapods.org/
Google Analytics for Mobile 统计解决方案
http://code.google.com/mobile/analytics/
WWDC
https://developer.apple.com/wwdc/
Design Guides and Resources
https://developer.apple.com/design/
Transcripts of WWDC sessions
http://asciiwwdc.com
Cocoa with Love
http://cocoawithlove.com/
Cocoa Dev Central
http://cocoadevcentral.com/
NSHipster
http://nshipster.com/
Style Guides
Google Objective-C Style Guide
NYTimes Objective-C Style Guide
Useful Tools and Services
Charles Web Debugging Proxy
Smore
iYu
V2EX  ›  iDev

关于Core Data何时commit的提问

  •  
  •   iYu ·
    iiiyu · Aug 29, 2012 · 4502 views
    This topic created in 5002 days ago, the information mentioned may be changed or developed.
    这两天看core data。然后试着做。出现下列问题。就是我insert进去一个数据。core data并没有马上提交到数据库里面。类似缓存了一下。然后 大概过15秒才commit。这时候 如果我退出app。那数据就丢失了。
    找了一下,并没有找到解决方法。
    类似这样
    http://stackoverflow.com/questions/11795391/core-data-commit-notification

    请问大家是怎么解决这个问题的。我使用的是斯坦福老头的UIManagedDocument方法。并没有直接Sqlite。
    7 replies    1970-01-01 08:00:00 +08:00
    jjgod
        1
    jjgod  
       Aug 29, 2012
    你为啥不直接调用 NSManagedObjectContext 的 -save:?
    iYu
        2
    iYu  
    OP
       Aug 29, 2012
    @jjgod save了一样等15秒
    jjgod
        3
    jjgod  
       Aug 29, 2012
    在 Mac OS X 下是即时的,不知道 iOS 玩了什么花样。
    iYu
        4
    iYu  
    OP
       Aug 29, 2012



    @jjgod 贴两张图。
    iYu
        5
    iYu  
    OP
       Aug 29, 2012
    无耻的最后顶一次
    everbird
        6
    everbird  
       Aug 30, 2012   ❤️ 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之”的结果,未实践,仅供参考
    iYu
        7
    iYu  
    OP
       Aug 30, 2012
    @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%的正确性。不够我测试了一下真机上 应该没有问题。
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   1254 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 32ms · UTC 17:21 · PVG 01:21 · LAX 10:21 · JFK 13:21
    ♥ Do have faith in what you're doing.