概述
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的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持靠谱客。
最后
以上就是懵懂店员为你收集整理的iOS 生成plist文件,在项目中代码创建plist的实例的全部内容,希望文章能够帮你解决iOS 生成plist文件,在项目中代码创建plist的实例所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复