我正在尝试将布尔值写入plist文件,但我真的不知道我在哪里做错了。我甚至没有得到任何异常/错误,但相关文件中的值保持不变。此外,文件路径也是正确的,myDict
的分配表明已经从文件中读取了值。
以下是我写的代码
-(void)SetSettings:(BOOL)SoundOn: (BOOL)GlowOn
{
NSString *pathSettingFile = [[NSString alloc]initWithString:[[NSBundle mainBundle]pathForResource:@"AppSettings" ofType:@"plist"]];
NSMutableDictionary *myDict = [NSMutableDictionary dictionaryWithContentsOfFile:pathSettingFile];
[myDict setObject:[NSNumber numberWithBool:SoundOn] forKey:@"isSoundOn"];
[myDict setObject:[NSNumber numberWithBool:GlowOn] forKey:@"isGlowOn"];
[myDict writeToFile:pathSettingFile atomically:NO];
[myDict release];
[pathSettingFile release];
}
答案 0 :(得分:6)
您无法写入主套装。您只能从主包中读取。如果要编写文件,则需要将其放入应用程序的文档目录中。
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *path = [documentsDirectory stringByAppendingPathComponent:[NSString stringWithFormat:@"%@.plist",plistName]];
编辑:
如果您需要主捆绑中的plist,可以先将其复制到文档目录中,然后进行修改。
NSError *error;
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *path = [documentsDirectory stringByAppendingPathComponent:[NSString stringWithFormat:@"%@.plist",plistName]];
NSFileManager *fileManager = [NSFileManager defaultManager];
if (![fileManager fileExistsAtPath: path]){
NSLog(@"File don't exists at path %@", path);
NSString *plistPathBundle = [[NSBundle mainBundle] pathForResource:plistName ofType:@"plist"];
[fileManager copyItemAtPath:plistPathBundle toPath: path error:&error];
}else{
NSLog(@"File exists at path:%@", path);
}
答案 1 :(得分:1)
您无法编写/修改资源中的文件。它们仅用于阅读。尝试在应用程序的documnets目录中创建相同的(plist文件)。
答案 2 :(得分:0)
[myDict writeToFile:pathSettingFile atomically:NO];
返回什么?我想你不能写信给你的文件。
请参阅this回答