iOS的数据存储

背景

在iOS开发中必不可少的要用到数据存储,数据的处理是iOS开发中的核心技术,适当的对数据进行持久化存储可以实现应用的离线功能,以此提高用户体验。所谓数据持久化,就是将数据保存到硬盘中,使得在应用程序或手机重启后可以继续访问之前保存的数据。在iOS开发中,有很多持久化得方案,接下来我将总结以下5种持久化方案:
1、plist(属性列表)
2、preference(偏好设置)
3、NSKeyedArchiver(归档)
4、SQList 3 (FMDB)
5、CoreData

应用沙盒

在介绍各种存储方法之前,先说明下沙盒机制。每个iOS应用都有一个 应用沙盒「文件系统目录」,与其他文件系统隔离
应用必须在自己的沙盒里,其他应用不能访问他人的沙盒

EAA11FC5-13D8-41A6-AF51-83FFE21E3808.png
  • Documents:保存应用运行时生成的需要持久化的数据,iTunes同步设备时会备份该目录。例如,游戏应用可将游戏存档保存在该目录

  • tmp:保存应用运行时所需的临时数据,使用完毕后再将相应的文件从该目录删除。应用没有运行时,系统也可能会清除该目录下的文件。iTunes同步设备时不会备份该目录

  • Library/Caches:保存应用运行时生成的需要持久化的数据,iTunes同步设备时不会备份该目录。一般存储体积大、不需要备份的非重要数据

  • Library/Preference:保存应用的所有偏好设置,iOS的Settings(设置)应用会在该目录中查找应用的设置信息。iTunes同步设备时会备份该目录


    // 获取 Documents 文件路径
    // 方法一、利用沙盒根目录拼接 ”Documents” 字符串
    // 不建议采用,因为新版本的操作系统可能会修改目录名
    NSString *home = NSHomeDirectory();
    NSString *documents = [home stringByAppendingPathComponent:@"Documents"];

// 方法二、利用 NSSearchPathForDirectoriesInDomains 函数
    
    /**
     NSSearchPathForDirectoriesInDomains

     @param NSDocumentDirectory 搜索目录是,Documents 目录
     @param NSUserDomainMask 搜索范围是,用户文件夹
     @param NO 不展开全路径:~/Library/Caches
     @return NSArray*
     */
    
    NSArray *documentArray = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentPath = [documentArray firstObject];
    NSLog(@"documentPath = %@",documentPath);
    
    
    NSString *libraryPath = [NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES)firstObject];
    NSLog(@"libraryPath = %@",libraryPath);
    
    NSString *preferencePath =[libraryPath stringByAppendingString:@"/preferences"];
    NSLog(@"%@",preferencePath);
    
    
    NSString *cachesPath = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES)firstObject];
    NSLog(@"cachesPath = %@",cachesPath);

    // 获取 tmp 文件路径
    NSString *tmpPath = NSTemporaryDirectory();


plist(属性列表)

iOS提供了一种plist格式的文件(属性列表)用于存储轻量级的数据,属性列表是一种XML格式的文件,拓展名为plist。如果对象是NSString、NSDictionary、NSArray、NSData类型,就可以使用writeToFile:atomically:⽅法 直接将对象写到属性列表文件中该格式保存的数据可以直接使用NSDictionary和NSArray读取 。plist文件在iOS开发中属于Write写入方式,可以以Property List列表形式显示,也可以以xml格式显示。对于数据管理是很方便的。掌握使用plist文件数据操作很有必要.

  • NSString 写入文件 读取
 NSArray *documentArray = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentPath = [documentArray firstObject];
    NSLog(@"documentPath = %@",documentPath);
    
    NSString *filePath = [documentPath stringByAppendingPathComponent:@"str.txt"];
    NSString *str = @"这是一个字符串";
    //atomically是否进行线性操作(YES保证发生意外时有中转文件来保存信息 直至写入完成 但是损耗大. NO的时候写入速度快 但是没有安全保障)
    [str writeToFile:filePath atomically:YES encoding:NSUTF8StringEncoding error:nil];
    
    NSString *str1 = [NSString stringWithContentsOfFile:filePath encoding:NSUTF8StringEncoding error:nil];
    //2017-03-19 15:28:09.740 信号量[3255:166796] 这是一个字符串
    NSLog(@"%@",str1);

D2A41CA4-9724-414A-9CA1-8808E22778E5.png
  • NSArray 写入文件 读取
  NSArray *documentArray = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentPath = [documentArray firstObject];
    NSLog(@"documentPath = %@",documentPath);
    
    NSString *filePath = [documentPath stringByAppendingPathComponent:@"arr.txt"];
    NSArray *array = @[@"abc",@"def",@"ghi"];
    [array writeToFile:filePath atomically:YES];
    
    NSArray *getArray = [NSArray arrayWithContentsOfFile:filePath];
//    2017-03-19 15:34:52.261 信号量[3423:172597] (
//                                              abc,
//                                              def,
//                                              ghi
//                                              )
    NSLog(@"%@",getArray);

81CF3301-99E0-4F30-97B8-8FABADE86B14.png
  • NSDictionary 写入文件 读取
  NSArray *documentArray = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentPath = [documentArray firstObject];
    NSLog(@"documentPath = %@",documentPath);
    
    NSString *filePath = [documentPath stringByAppendingPathComponent:@"arr.txt"];
    NSDictionary *dic = @{@"name":@"jack",@"age":@"13"};
    [dic writeToFile:filePath atomically:YES];
    
    NSDictionary *mydic = [NSDictionary dictionaryWithContentsOfFile:filePath];
//    2017-03-19 15:39:03.598 信号量[3479:176290] {
//        age = 13;
//        name = jack;
//    }

    NSLog(@"%@",mydic);
    
2838F4E0-9011-432E-B103-5B45FFD5545B.png
  • NSData对象写入 读取
 NSArray *documentArray = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentPath = [documentArray firstObject];
    NSLog(@"documentPath = %@",documentPath);
    
    NSString *filePath = [documentPath stringByAppendingPathComponent:@"22.png"];
   
    UIImage *image = [UIImage imageNamed:@"22.png"];
    
    NSData *data = UIImagePNGRepresentation(image);
    
    [data writeToFile:filePath atomically:YES];
    
    NSData *myData = [NSData dataWithContentsOfFile:filePath];
    //2017-03-19 15:45:55.005 信号量[3666:183586] 3157
    NSLog(@"%lu",(unsigned long)myData.length);

75B9FBD2-6013-47E3-B489-C4D877CE79C0.png

preference(偏好设置)

使用NSUserDefault 实现持久化
下面来看下 NSUserDefault 本地保存的位置,Library/Preferences 这个目录下的 plist 文件就是其保存的目录。

  //1.获得NSUserDefaults文件
  NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];
  //2.向文件中写入内容
  [userDefaults setObject:@"AAA" forKey:@"a"];
  [userDefaults setBool:YES forKey:@"sex"];
  [userDefaults setInteger:21 forKey:@"age"];
  //2.1立即同步
  [userDefaults synchronize];
  //3.读取文件
  NSString *name = [userDefaults objectForKey:@"a"];
  BOOL sex = [userDefaults boolForKey:@"sex"];
  NSInteger age = [userDefaults integerForKey:@"age"];

881054C8-D179-4E02-AAF0-4AF35E1AB9EF.png

偏好设置是专门用来保存应用程序的配置信息的,一般不要在偏好设置中保存其他数据。
如果没有调用synchronize方法,系统会根据I/O情况不定时刻地保存到文件中。所以如果需要立即写入文件的就必须调用synchronize方法。
偏好设置会将所有数据保存到同一个文件中。即preference目录下的一个以此应用包名来命名的plist文件。

NSKeyedArchiver(归档)

#import <Foundation/Foundation.h>

@interface Person : NSObject

@property (nonatomic, copy) NSString *name;
@property (nonatomic, assign) int age;

@end
#import "Person.h"
//遵守NSCoding协议
@interface Person()<NSCoding>


@end

@implementation Person

#pragma mark 编码,对象属性进行编码
- (void)encodeWithCoder:(NSCoder *)aCoder
{
    //前者(_age,_name)是属性,后者是关键字Key(age,name)
    [aCoder encodeInt:_age forKey:@"age"];
    [aCoder encodeObject:_name forKey:@"name"];
}

#pragma mark 解码,解码归档数据初始化对象
- (id)initWithCoder:(NSCoder *)aDecoder
{
    if (self = [super init]) {
        _age = [aDecoder decodeIntForKey:@"age"];
        _name = [aDecoder decodeObjectForKey:@"name"];
    }
    return self;
}

@end

测试

  NSArray *documentArray = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentPath = [documentArray firstObject];
    NSLog(@"documentPath = %@",documentPath);
    
    NSString *filePath = [documentPath stringByAppendingPathComponent:@"person"];
    
    
    Person *p = [Person new];
    p.name =@"wang";
    p.age = 12;
    //Encoding保存Person
    [NSKeyedArchiver archiveRootObject:p toFile:filePath];
    
    Person *pp = [NSKeyedUnarchiver unarchiveObjectWithFile:filePath];
//    2017-03-19 16:32:16.750 信号量[4359:217706] wang
//    2017-03-19 16:32:16.751 信号量[4359:217706] 12
    NSLog(@"%@",pp.name);
    NSLog(@"%d",pp.age);

SQList 3和CoreData下篇再写

SQList 3封装 http://www.jianshu.com/p/5471d001572c

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 201,924评论 5 474
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 84,781评论 2 378
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 148,813评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,264评论 1 272
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,273评论 5 363
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,383评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,800评论 3 393
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,482评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,673评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,497评论 2 318
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,545评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,240评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,802评论 3 304
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,866评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,101评论 1 258
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,673评论 2 348
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,245评论 2 341

推荐阅读更多精彩内容