在iPhone、ipad真机上,文件夹Resouces是只读的,无法写入。document 和temp文件夹的东西才是可读写的。
最近在做一个项目,我在模拟器上pList写入是可以的,但在真机上是不可以的。上次遇到的是UITextVIEw的布局上模拟器和真机有很大不一样,模拟器毕竟只是模拟器啊!
废话不多说
就改一下存放路径就行了,比如放到 document下面:
Nsstring* markname=@"书本1,第5页";//加入的是书号和页码 NSArray *doc = NSSearchPathForDirectorIEsInDomains( NSdocumentDirectory,NSUserDomainMask,YES); Nsstring *docPath = [ doc objectAtIndex:0 ]; Nsstring *docLocation=[docPath stringByAppendingPathComponent:@"bookmark.pList"]; NSMutableArray *markarray = [[NSMutableArray alloc] initWithContentsOffile:docLocation]; [markarray addobject:markname]; NSLog(@"%@",markarray); [markarray writetofile:docLocation atomically:YES];总结
以上是内存溢出为你收集整理的plist写入(真机和模拟器是不一样的)全部内容,希望文章能够帮你解决plist写入(真机和模拟器是不一样的)所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)