码迷,mamicode.com
首页 > 其他好文 > 详细

1.4.2.4. SAVING(Core Data 应用程序实践指南)

时间:2015-11-02 17:09:38      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:

  现在,要添加一个保存修改的方法。其实很简单,就是调用持久化存储协调器的save方法。

- (void)saveContext {
    if (debug == 1) {
        NSLog(@"Running %@ ‘%@‘",self.class, NSStringFromSelector(_cmd));
    }
    
    if ([_context hasChanges]) {
        NSError *error;
        
        if ([_context save:&error]) {
            NSLog(@"_context save changes to persistent store.");
        }else{
            NSLog(@"Faild to save changes: %@.",error);
        }
    }else{
        NSLog(@"SKIPPED _context save ,there are no changes!");
    }
    
}

 

1.4.2.4. SAVING(Core Data 应用程序实践指南)

标签:

原文地址:http://www.cnblogs.com/SimonGao/p/4930256.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!