您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
这篇文章给大家分享的是有关iOS如何对plist文件进行读写,增删改查操作的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。
对plist文件进行读写
//获取路径对象 NSArray *pathArray = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); NSString *path = [pathArray objectAtIndex:0]; //获取文件的完整路径 NSString *filePatch = [path stringByAppendingPathComponent:@"column.plist"]; NSLog(@"%@",filePatch); //写入数据到plist文件 NSMutableDictionary *dic1 = [NSMutableDictionary dictionaryWithObjectsAndKeys:@"小小虎",@"name",@"5",@"age",@"boy",@"sex",nil]; NSMutableDictionary *dic2 = [NSMutableDictionary dictionaryWithObjectsAndKeys:@"小小兮",@"name",@"6",@"age",@"girl",@"sex",nil]; //将上面2个小字典保存到大字典里面 NSMutableDictionary *dataDic = [NSMutableDictionary dictionary]; [dataDic setObject:dic1 forKey:@"一年级"]; [dataDic setObject:dic2 forKey:@"二年级"]; //写入plist里面 [dataDic writeToFile:filePatch atomically:YES]; //读取plist文件的内容 NSMutableDictionary *dataDictionary = [[NSMutableDictionary alloc] initWithContentsOfFile:filePatch]; NSLog(@"---plist一开始保存时候的内容---%@",dataDictionary);
对pilst文件进行修改
//修改字典里面的内容,先按照结构取到你想修改内容的小字典 NSMutableDictionary *dd = [dataDictionary objectForKey:@"一年级"]; [dd setObject:@"我改名字了哦" forKey:@"name"]; [dd setObject:@"我添加的新内容" forKey:@"content"]; [dd removeObjectForKey:@"age"]; //修改成功以后,将这个小字典重新添加到大字典里面 [dataDictionary setObject:dd forKey:@"一年级"]; [dataDictionary writeToFile:filePatch atomically:YES]; NSLog(@"---plist做过操作之后的字典里面内容---%@",dataDictionary);
删除
//清除plist文件,可以根据我上面讲的方式进去本地查看plist文件是否被清除 NSFileManager *fileMger = [NSFileManager defaultManager]; NSString *xiaoXiPath = [[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)objectAtIndex:0]stringByAppendingPathComponent:@"xiaoxi.plist"]; //如果文件路径存在的话 BOOL bRet = [fileMger fileExistsAtPath:xiaoXiPath]; if (bRet) { NSError *err; [fileMger removeItemAtPath:xiaoXiPath error:&err]; }
感谢各位的阅读!关于“iOS如何对plist文件进行读写,增删改查操作”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。