该程序非常简单:它有一个masterView 和一个detailView。在详细视图中,我应该能够编辑相应对象的属性(基本上是在已存储的数字上添加一个数字)。问题是我不确定如何保存更改。
我在 detailViewController 的 IBAction 中有这个:
- (IBAction)depositFunds:(id)sender
{
float change = [[self.detailItem valueForKey:@"balance"] floatValue] + [amountTextfield.text floatValue];
[self.detailItem setValue:[NSNumber numberWithFloat:change] forKey:@"balance"];
}
如何保存这些更改?