首页 > 系统 > iOS > 正文

iOS 生成plist文件,在项目中代码创建plist的实例

2020-07-26 02:30:32
字体:
来源:转载
供稿:网友

iOS数据存储方式:

plist(属性列表),preference(偏好设置),SQLite,coredata

plist和preference不支持自定义模型的存储

整理代码创建plist文件的方法:

#pragma mark - 创建plist文件-(void)creatPlistFileWithArr:(NSArray *)array{ //将字典保存到document文件->获取appdocument路径 NSString *docPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0]; //要创建的plist文件名 -> 路径 NSString *filePath = [docPath stringByAppendingPathComponent:@"cityPlist.plist"]; //将数组写入文件 [array writeToFile:filePath atomically:YES]; //读取文件 NSArray *plistArr = [NSArray arrayWithContentsOfFile:filePath]; NSLog(@"读取 写入的plist 文件:%@",plistArr);}

以上这篇iOS 生成plist文件,在项目中代码创建plist的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持武林网。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表