我的应用程序中有一个属性列表,我让它更改了所有不同字段的值,但是当应用程序关闭时,所有设置都被删除。这是我正在使用的代码:
的
的NSBundle *mainBundle = [NSBundle mainBundle];
NSString *path = [mainBundle pathForResource:@"Settings" ofType:@"plist"];
//NSNumber *str = [dict objectForKey:@"Auto_Save"];
NSMutableDictionary *data = [[NSMutableDictionary alloc] initWithContentsOfFile:path];
[data setObject:[NSNumber numberWithBool:sender.on] forKey:@"Auto_Save"];
[data writeToFile:path atomically:YES];
的
答案 0 :(得分:0)
您无法回写存储在应用程序包中的文件。您需要将其写入'disk'。