我希望pList将文件添加到资源文件夹,我想在那时添加词典.我不想要pragmatical创建pList但我想要实际阅读数据.
解决方法NSArray *paths = NSSearchPathForDirectorIEsInDomains(NSdocumentDirectory,NSUserDomainMask,YES); Nsstring *documentsDirectory = [paths objectAtIndex:0]; Nsstring *path = [documentsDirectory stringByAppendingPathComponent:@"pList.pList"]; NSfileManager *fileManager = [NSfileManager defaultManager];NSMutableDictionary *data;if ([fileManager fileExistsAtPath: path]) { data = [[NSMutableDictionary alloc] initWithContentsOffile:path];}else { // If the file doesn’t exist,create an empty dictionary data = [[NSMutableDictionary alloc] init];}//To insert the data into the pListdata[@"value"] = @(5);[data writetofile: path atomically:YES];[data release];//To retrIEve the data from the pListNSMutableDictionary *savedStock = [[NSMutableDictionary alloc] initWithContentsOffile:path];int value1;value1 = [savedStock[@"value"] intValue];NSLog(@"%i",value1);[savedStock release];总结
以上是内存溢出为你收集整理的iphone – 我们如何在Xcode项目中创建自己的plist文件?全部内容,希望文章能够帮你解决iphone – 我们如何在Xcode项目中创建自己的plist文件?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)