归档
归档->数据持久化的方式->加密(把文件加密《不是把数据加密》
归档分为:
1、存储数据(编码、序列化、归档过程)
2、读取数据(解码、反序列化、解归档过程)
*可以归档的对象:必须遵守归档协议(NSSecureCoding遵守NSCoding)、实现协议方法
*除了NSObject未实现归档协 议其他实现了协议的类都可以归档(UIViewController、UIView...)
归档类名:NSKeyedArchiver
解归档类名:NSKeyedUnarchiver
*归档、解归档都是通过key来实现的
*在归档、解归档的时候key一定要对应(尽量和对象名相同)
归档的步骤:
1、写存储归档文件的路径
NSArray*searchList = NSSearchPathForDirectoriesInDomains(NSLibraryDirectory,NSUserDomainMask,YES);
*归档文件的尾缀尽量用.archiver
NSString*path = [[searchList lastObject]stringByAppendingPathComponent:@"list.archiver"];
2、准备要归档的数据
NSArray *list =@[@{@"name":@"小明",@"age":@(18),@"height":@(18.5)}];
3、开始归档
*把一个Object(支持归档)的数据以归档的形式存储到指定位置
+ (BOOL)archiveRootObject:(id)rootObject toFile:(NSString
*)path;
*支持归档协议的对象系统帮忙对他进行了编码
BOOLisSuccess = [NSKeyedArchiverarchiveRootObject:list toFile:path];
if(isSuccess) {
NSLog(@"%@",path);
}
解归档的步骤:
1、归档文件路径
2、开始解归档
+ (nullable id)unarchiveObjectWithFile:(NSString *)path
NSArray
*list = [NSKeyedUnarchiver unarchiveObjectWithFile:path];
#pragma mark---NSData二进制的类---
*NSData二进制的类可以把文件或者数据转成二进制的对象
多种数据归档步骤:
1、存储路径
NSArray *searchList = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES);
NSString*path = [[searchListlastObject]stringByAppendingPathComponent:@"user.archiver"];
2、初始化一个可变的二进制对象**NSMutableData同时准备要归档的数据
NSString *name =@"mary";
NSIntegerage =18;
floatheight =172.5;
NSMutableData*Data = [NSMutableDatadata];
3、归档等待写入数据的二进制对象(要把二进制对象写入到文件)->让归档对象帮他写入
NSKeyedArchiver *arc = [[NSKeyedArchiver
alloc]initForWritingWithMutableData:Data];
4、使用归档对象对要归档的数据进行编码(同时写入到二进制对象-系统帮咱们操作)(编码结束就会把编码后的数据写入二进制对象)
*编码:encode解码:decode
*要用对应的数据类型进行编码
[arc encodeObject:name forKey:@"name"];
[arc encodeInteger:age forKey:@"age"];
[arc encodeFloat:height forKey:@"height"];
5、编码结束
*把编码之后数据写入到二进制对象
[arc finishEncoding];
6、把二进制对象存储到指定位置
BOOLisSuccess = [Data writeToFile:pathatomically:YES];
if(isSuccess) {
NSLog(@"%@",path);
多种解归档:
**decode解码
- (instancetype)initForReadingWithData:(NSData *)data
1、归档文件路径
2、使用data读取数据准备解归档data里面的数据
NSKeyedUnarchiver *unarchiver = [[NSKeyedUnarchiver
alloc]initForReadingWithData:[NSData dataWithContentsOfFile:path]];
3、解归档数据用对应的数据类型接收
NSString*name = [unarchiver decodeObjectForKey:@"name"];
NSIntegerage = [unarchiver decodeIntegerForKey:@"age"];
floatheight = [unarchiver decodeFloatForKey:@"height"];
NSLog(@"%@
%ld %f",name,age,height);
*自定义归档*:
自定义归档->有些数据不能归档->让他遵守归档协议(NSCoding)->
归档、解归档都与第一种方式相同
userModel *user = [[userModel alloc]init];
user.name =@"江儿";
user.age=18;
user.height =165.5;
NSString*path = [NSHomeDirectory()stringByAppendingPathComponent:@"user.archiver"];
BOOLisOK = [NSKeyedArchiverarchiveRootObject:user toFile:path];
if(isOK) {
NSLog(@"%@",path);
}
userModel*userMode= [NSKeyedUnarchiverunarchiveObjectWithFile:path];
NSLog(@"%@ %ld %f",userMode.name,userMode.age,userMode.height);
当在归档位置(viewController中)调用[NSKeyedArchiver archiveRootObject:XXX toFile:XXX];会自动调用encodeWithCoder:这个代理方法
使用**归档方法对对象归档的时候会调用这个方法
- (void)encodeWithCoder:(NSCoder *)aCoder{
aCoder就是系统传过来的NSKeyedArchiver实例化出来的对象
[aCoderencodeObject:self.name forKey:@"name"];
[aCoderencodeInteger:self.age forKey:@"age"];
[aCoderencodeFloat:self.height forKey:@"height"];
}
使用**解归档方法对对象解归档的时候会调用这个方法
- (nullableinstancetype)initWithCoder:(NSCoder*)aDecoder{
只要是构造方法先把创建对象的方法补全
//self = [super init];
//if(self) {
//}
//return self;
self= [super init];
if(self) {
当使用解归档方法的时候系统会自动调用initWithCoder:这个方法系统会帮咱们创建一个对象
之前的对象的数据保存在归档文件里面
在解归档的时候还原数据并且把还原的数据赋值给这个对象->现在这个对象的数据跟原来归档的数据是一样的
self.name = [aDecoderdecodeObjectForKey:@"name"];
self.age = [aDecoderdecodeIntegerForKey:@"age"];
self.height = [aDecoderdecodeFloatForKey:@"height"];
}
returnself;
}