iOS应用数据存储方式(归档--反归档)

一、简单说明

plist:在使用plist进行数据存储和读取,只适用于系统自带的一些常用类型才能用,且必须先获取路径相对麻烦;
偏好设置(将所有的东西都保存在同一个文件夹下面,且主要用于存储应用的设置信息)
归档/反归档:因为前两者都有一个致命的缺陷,只能存储常用的类型。归档可以实现把自定义的对象存放在文件中。

二、代码示例

1.代码示例

26 - (IBAction)saveBtnOnclick:(UIButton *)sender {
27     //1.创建对象
28     Person *per = [[Person alloc] init];
29     per.name = @"孙悟空";
30     per.age = 100;
31     per.height = 1.9;
32     
33     //2.获取文件路径
34     NSString *docPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject];
35     NSString *path = [docPath stringByAppendingPathComponent:@"person.archiver"];
36     NSLog(@"path = %@", path);
37     
38     //3.将自定义的对象保存到文件中
39     [NSKeyedArchiver archiveRootObject:per toFile:path];
40     
41 }
42 
43 - (IBAction)readBtnOnclick:(UIButton *)sender {
44     //1.获取文件路径
45     NSString *docPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject];
46     NSString *path = [docPath stringByAppendingPathComponent:@"person.archiver"];
47     NSLog(@"path = %@", path);
48     
49     //2.从文件中读取对象
50     Person *per = [NSKeyedUnarchiver unarchiveObjectWithFile:path];
51     

新建一个person类
Person.h文件

 9 #import 
10 
11 // 如果想将一个自定义对象保存到文件中必须实现NSCoding协议
12 @interface Person : NSObject 
13 
14 //姓名
15 @property(nonatomic, copy) NSString *name;
16 //年龄
17 @property(nonatomic, assign) int age;
18 //身高
19 @property(nonatomic, assign) double height;
20 @end

Person.m文件

 9 #import "Person.h"
10 
11 @implementation Person
12 
13 // 当将一个自定义对象保存到文件的时候就会调用该方法
14 // 在该方法中说明如何存储自定义对象的属性
15 // 也就说在该方法中说清楚存储自定义对象的哪些属性
16 - (void)encodeWithCoder:(NSCoder *)aCoder
17 {
18     NSLog(@"调用了encodeWithCoder:方法");
19     [aCoder encodeObject:self.name forKey:@"name"];
20     [aCoder encodeInteger:self.age forKey:@"age"];
21     [aCoder encodeDouble:self.height forKey:@"height"];
22 }
23 
24 // 当从文件中读取一个对象的时候就会调用该方法
25 // 在该方法中说明如何读取保存在文件中的对象
26 // 也就是说在该方法中说清楚怎么读取文件中的对象
27 - (instancetype)initWithCoder:(NSCoder *)aDecoder
28 {
29     NSLog(@"调用了initWithCoder:方法");
30     //注意:在构造方法中需要先初始化父类的方法
31     if (self = [super init]) {
32         self.name = [aDecoder decodeObjectForKey:@"name"];
33         self.age = [aDecoder decodeIntegerForKey:@"age"];
34         self.height = [aDecoder decodeDoubleForKey:@"height"];
35     }
36     return self;
37 }
38 @end

关于不实现两个协议方法的错误提示:
-(void)encodeWithCoder:(NSCoder *)aCoder方法:

iOS应用数据存储方式(归档--反归档)_第1张图片
归档.png

-(instancetype)initWithCoder:(NSCoder *)aDecoder方法:

iOS应用数据存储方式(归档--反归档)_第2张图片
反归档.png
三、继承类中的使用

新建一个学生类,让这个类继承自Preson这个类,增加一个体重的属性。
Student.h文件

9 #import "Person.h"
10 
11 @interface Student : Person
12 //增加一个体重属性
13 @property(nonatomic, assign) double weight;
14 @end

Student.m文件

 9 #import "Student.h"
10 
11 @implementation Student
12 
13 //在子类中重写这两个方法
14 - (void)encodeWithCoder:(NSCoder *)aCoder
15 {
16     [super encodeWithCoder:aCoder];
17     NSLog(@"调用了Student encodeWithCoder");
18     [aCoder encodeFloat:self.weight forKey:@"weight"];
19 }
20 
21 - (instancetype)initWithCoder:(NSCoder *)aDecoder
22 {
23     if (self = [super initWithCoder:aDecoder]) {
24         NSLog(@"调用了Student initWithCoder");
25         self.weight = [aDecoder decodeFloatForKey:@"weight"];
26     }
27     return self;
28 }
29 @end
四、重要说明

1.保存数据过程:

//1.创建对象
Student *stu = [[Student alloc] init];
stu.name = @"唐僧";
stu.age = 23;
stu.height = 1.7;
stu.weight = 62;
   
//2.获取文件路径
NSString *docPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject];
NSString *path = [docPath stringByAppendingPathComponent:@"student.archive"];
NSLog(@"path = %@", path);
    
//3.将自定义的对象保存到文件中
[NSKeyedArchiver archiveRootObject:stu toFile:path];

2.读取数据过程:

//1.获取文件路径
NSString *docPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject];
NSString *path = [docPath stringByAppendingPathComponent:@"student.archive"];
//2.从文件中读取对象
    Student *stu = [NSKeyedUnarchiver unarchiveObjectWithFile:path];

3.遵守NSCoding协议,并实现该协议中的两个方法。

4.如果是继承,则子类一定要重写那两个方法。因为person的子类在存取的时候,会去子类中去找调用的方法,没找到那么它就去父类中找,所以最后保存和读取的时候新增加的属性会被忽略。需要先调用父类的方法,先初始化父类的,再初始化子类的。

5.保存数据的文件的后缀名可以随意命名。

6.通过plist保存的数据是直接显示的,不安全。通过归档方法保存的数据在文件中打开是乱码的,更安全。

原文地址(转载)

你可能感兴趣的:(iOS应用数据存储方式(归档--反归档))