我正在制作一个应用程序,并且有一个带有实体和15个布尔属性的核心数据文件。我想要这样,以便当用户按下按钮时,它将核心数据文件中的属性之一的值从“0”更改为“1”。这样做的代码是什么?我已经设置好了动作。
最佳答案
-(void)buttonAction:(id)sender {
myManagedObject.boolAttribute = [NSNumber numberWithBool:
![myManagedObject.boolAttribute boolValue]];
[self.managedObjectContext save:nil];
// if you need to update the UI (no fetchedResultsController):
[self.view setNeedsDisplay];
// or
[self.tableView reloadData];
}
关于ios - Xcode核心数据属性,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11801306/