早上好 如何在iPhone中创建新的plist?有可能的 请任何人帮助我
先谢谢
答案 0 :(得分:3)
您可以通过右键单击项目文件来创建属性列表文件,选择新文件并选择这样的资源 -
您还可以通过以下代码创建属性列表文件 -
创建新文件 -
#define FilePath [@"~/Documents/Demo.plist" stringByStandardizingPath]
NSArray *array = [NSArray arrayWithObjects:obj1,obj2,obj3,nil];
NSData *data = [NSPropertyListSerialization dataFromPropertyList:array format:NSPropertyListXMLFormat_v1_0 errorDescription:nil];
[data writeToFile:FilePath atomically:YES];
要阅读该plist文件 -
NSData *data = [NSData dataWithContentsOfFile:FilePath];
NSPropertyListFormat format;
NSArray *array = [NSPropertyListSerialization propertyListFromData:data mutabilityOption:NSPropertyListImmutable format:&format errorDescription:nil];
obj1 = [array objectAtIndex:0];
obj2 = [array objectAtIndex:1];
obj3 = [array objectAtIndex:2];
答案 1 :(得分:0)
在xcode中,
右键单击 - >新文件 - >资源标签 - >财产清单档案。
答案 2 :(得分:-2)
阅读this.希望,这就是你要找的东西。
编辑:聪明人,我的意思是自己。