OStack程序员社区-中国程序员成长平台

标题: iOS 核心数据更新 : changes not saved [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 04:50
标题: iOS 核心数据更新 : changes not saved

我正在尝试在我的 iPad 应用程序中使用 Core Data。

我有一个这样的模型:

客户.h

#import <CoreData/CoreData.h>
@interface Customer : NSManagedObject
@property (nonatomic,strong) NSString *name;
@end

客户.m

#import "Customer.h"
@implementation Customer
@synthesize name;
@end

表格 View Controller 显示数据库中的所有客户。通过选择客户,将启动详细信息 View 推送序列并设置客户:

- (void)prepareForSegueUIStoryboardSegue *)segue senderid)sender
{
    // Get the new view controller using [segue destinationViewController].
    // Pass the selected object to the new view controller.

    CustomerDetailViewController *detailViewController = (CustomerDetailViewController*)   [segue destinationViewController];
    detailViewController.customer = [customers objectAtIndex:self.tableView.indexPathForSelectedRow.row];
}

在详细 View Controller 中,如果更改,操作保存应该保存客户:

- (IBAction)saveid)sender 
{
  AppDelegate *delegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
  NSManagedObjectContext *moc = [delegate managedObjectContext];
  self.customer.name = self.nameTextField.text;
  NSError *error;
  if (![moc save:&error]) 
  {
    NSLog(@"Can't Save! %@ %@", error, [error localizedDescription]);
  }
}

虽然改了名字,但没有保存更改:虽然没有出现错误(错误为零,日志未显示)...

此外:

  BOOL customerHasChanges = [self.customer hasChanges];
  BOOL mocHasChanges = [moc hasChanges];

都是假的!

但是插入新实体可以正常工作:

Customer *customer = [NSEntityDescription insertNewObjectForEntityForName"Customer" inManagedObjectContext:self.managedObjectContext];
[customer setValue"Mars Inc." forKey"name"];
NSError *error; 
[self.managedObjectContext save:&error];



Best Answer-推荐答案


您的实现文件中有错误。使用 @dynamic 而不是 @synthesize

关于iOS 核心数据更新 : changes not saved,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19477604/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4