存储方式

plist存储

  • 如何判断一个对象能不能使用Plist,就看下有没有writeToFile
  • // File:文件的全路径,存储
    [arr writeToFile:filePath atomically:YES];
  • //读取
    NSArray *arr = [NSArray arrayWithContentsOfFile:filePath];
    存储方式_第1张图片
    Snip20160427_1.png

偏好设置

  • 偏好设置存储,最后存储的是plist文件


    存储方式_第2张图片
    ![Snip20160426_12.png](http://upload-images.jianshu.io/upload_images/794694-883d2d7f06dedc70.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

解档归档

存储方式_第3张图片
![ ![ ![Snip20160426_17.png](http://upload-images.jianshu.io/upload_images/794694-3c8b6b2cad402805.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240) ](http://upload-images.jianshu.io/upload_images/794694-9dfc922cf661e168.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240) ](http://upload-images.jianshu.io/upload_images/794694-c23a8ccc6f8f3f1d.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

你可能感兴趣的:(存储方式)