iOS--归档与解归档

作者: 空白Null | 来源:发表于2016-07-07 15:23 被阅读3268次

    一、归档的基本概念

    之前将数据保存本地,只能是字符串、数组、字典、NSNuber、BOOL等容器类对象对象,不能将所有对象都给保存,而采用归档能将所有的对象转化为二进制数据保存在文件中,并通过解归档让将文件里面保存的数据读取出来

    二、使用环境

    之前我们给通讯录添加一个联系人只能是将添加的人放到一个字典中,然后将这个字典放到数组中,最终将数组写入文件中

    当我们需要显示这些联系人时,要从文件中将这个数组读取出来,还要将数据里面的一个个字典转化成model,放到一个新数组里

    而现在我们可以使用归档在添加的时候就将这一个个联系人的信息转化成model,将这些model直接放到一个数组里,需要展示的时候,在从文件中读取出来数据,此时这个数组里面存放直接就是一个个model

    有些应用支持一个离线缓存,也就是说当手机没联网时,可以将手机有网时的数据存放在本地,当手机没网时,从本地中取出来这些数据展示

    三、某个对象支持归档解归档需要满足三个条件

    1、所属的类遵守NSCoding协议

    2、实现协议里面的归档方法

    - (void)encodeWithCoder:(NSCoder *)aCoder

    3、实现协议里面的解归档方法

    - (nullable instancetype)initWithCoder:(NSCoder *)aDecoder

    四、对系统的类进行归档解归档

    1、指定将对象放在哪个文件中,归档后的文件,后缀要求是archiver

    [NSHomeDirectory() stringByAppendingPathComponent:@"data.archiver"];

    2、将对象归档到指定的路径中

    [NSKeyedArchiver archiveRootObject:name toFile:path];

    3、将归档后的数据提取出来

    [NSKeyedUnarchiver unarchiveObjectWithFile:path];

    五、对自定义的类进行归档与解归档    

    1、让这个类遵循

    2、实现归档方法,aCoder就是归档时传过来的归档对象,对象被归档时会调用这个方法

    - (void)encodeWithCoder:(NSCoder *)aCoder{

    [aCoder encodeObject:self.name forKey:@"name"];

    [aCoder encodeInteger:self.age forKey:@"age"];

    [aCoder encodeObject:self.sex forKey:@"sex"];

    }

    3、实现解归档方法,对象解归档是会调用这个方法

    - (instancetype)initWithCoder:(NSCoder *)aDecoder{

    //解归档时会产生一个Person对象,这里是给这个Person对象赋值

    self = [super init];

    if (self) {

    self.name = [aDecoder decodeObjectForKey:@"name"];

    self.age = [aDecoder decodeIntegerForKey:@"age"];

    self.sex = [aDecoder decodeObjectForKey:@"sex"];

    }

    return self;

    }

    六、同时将多个对象归档与解归档

    1、归档

    1)准备一个可变的data对象,通过归档对象将多个数据存在一个data对象里,最终将这个data写入文件

    NSMutableData *data = [NSMutableData data];

    2)archiver初始化的时候包装一个可变的data对象

    NSKeyedArchiver *archiver = [[NSKeyedArchiver alloc]initForWritingWithMutableData:data];

    3)通过归档对象将这些数据转化成二进制,并保存在一个data对象里

    [archiver encodeObject:name forKey:@"name"];

    [archiver encodeInteger:age forKey:@"age"];

    [archiver encodeObject:sex forKey:@"sex"];

    4)转化完毕,意思是结束使用归档对象将上面的数据保存在了data里面

    [archiver finishEncoding];

    5)将转化好的data写入文件

    [data writeToFile:path atomically:YES];

    2、解归档

    1)将路径里的二进制数据给取出来

    NSMutableData *data = [NSMutableData dataWithContentsOfFile:path];

    2)将二进制数据包装在一个解归档对象中

    NSKeyedUnarchiver *unarchiver = [[NSKeyedUnarchiver alloc]initForReadingWithData:data];

    3)通过解归档对象将二进制数据分别给反序列化

    NSString *name = [unarchiver decodeObjectForKey:@"name"];

    NSInteger age = [unarchiver decodeIntegerForKey:@"age"];

    NSString *sex = [unarchiver decodeObjectForKey:@"sex"];

    七、练习  

    1、模拟网络数据进行本地缓存   

     1)修改新工程自带的ViewController.h 如下     

     #import<UIKit/UIKit.h>

    @interface ViewController : UITableViewController

    @end

    2)在AppDelegate.m里面自定义window,

    self.window = [[UIWindow alloc]initWithFrame:[UIScreen mainScreen].bounds];

    [self.window makeKeyAndVisible];

    //报错后,记得导入ViewController  #import "ViewController.h"

    self.window.rootViewController = [[UINavigationController alloc]initWithRootViewController:[[ViewController alloc]init]];

    3)新建一个InfoModel类,      

    InfoModel.h      

      #import<Foundation/Foundation.h>

    //对象要归档必须要遵守NSCoding协议       

     @interface InfoModel : NSObject<NSCoding>

    @property(nonatomic,copy) NSString *name;

    @property(nonatomic,copy) NSString *phone;

    @end

    InfoModel.m

    #import "InfoModel.h"

    @implementation InfoModel

    - (void)encodeWithCoder:(NSCoder *)aCoder{

    [aCoder encodeObject:self.name forKey:@"name"];

    [aCoder encodeObject:self.phone forKey:@"phone"];

    }

    - (instancetype)initWithCoder:(NSCoder *)aDecoder{

    self = [super init];

    if (self) {

    self.name = [aDecoder decodeObjectForKey:@"name"];

    self.phone = [aDecoder decodeObjectForKey:@"phone"];

    }

    return self;

    }

    @end

    4) ViewController.m

    #import "ViewController.h"

    #import "InfoModel.h"

    //报错,将课件中的MJExtension文件夹拖到工程中

    #import "MJExtension.h"

    //模拟服务器路径

    #define kLocalPath [NSHomeDirectory() stringByAppendingPathComponent:@"data.archiver"]

    //模拟本地缓存路径

    #define kServerPath [[NSBundle mainBundle] pathForResource:@"Connect" ofType:@"plist"]

    @interface ViewController ()

    {

    NSMutableArray *dataArray;

    }

    @end

    @implementation ViewController

    - (void)viewDidLoad {

    [super viewDidLoad];

    [self loadData];

    }

    - (void)loadData{

    //准备数据

    dataArray = [self fetchData];

    if(dataArray == nil){

    NSLog(@"请检查网络设置");

    return;

    }

    [self.tableView reloadData];

    }

    - (NSMutableArray *)fetchData{

    //1、先从服务器获取数据

    NSMutableArray *tempArray = [NSMutableArray arrayWithContentsOfFile:kServerPath];

    if (tempArray == nil) {

    //2、如果从服务器获取数据失败,则从本地缓存中读取数据

    tempArray = [NSKeyedUnarchiver unarchiveObjectWithFile:kLocalPath];

    }else{

    //3、如果从服务器获取数据成功,则将数据通过MJExtension框架,转化为model

    tempArray = [InfoModel mj_objectArrayWithKeyValuesArray:tempArray];

    //4、将最新从服务器获取到数据保存到本地

    [NSKeyedArchiver archiveRootObject:tempArray toFile:kLocalPath];

    }

    return tempArray;

    }

    - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{

    return dataArray.count;

    }

    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{

    static NSString *cellID = @"cellID";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellID];

    if (cell == nil) {

    cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:cellID];

    }

    InfoModel *model = dataArray[indexPath.row];

    cell.textLabel.text = model.name;

    cell.detailTextLabel.text = model.phone;

    return cell;

    }

    @end

    相关文章

      网友评论

        本文标题:iOS--归档与解归档

        本文链接:https://www.haomeiwen.com/subject/xxjljttx.html