0

我的应用程序中有一个属性列表,我让它更改所有不同字段的值,但是当应用程序关闭时,所有设置都被删除。这是我正在使用的代码:

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];

4

1 回答 1

0

您不能写回存储在应用程序包中的文件。您需要将其写入“磁盘”。

于 2012-09-12T22:32:36.593 回答