简单的归档、接档

#import <Foundation/Foundation.h>

 @interface model : NSObject

@property(nonatomic,copy)NSString *bookName;

@property(nonatomic,assign)double BookPrice;

@end

//实现委托

@interface model()<NSCoding>

@end

@implementation model

//归档

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

    [aCoder encodeObject:self.bookName forKey:@"BookName"];

    [aCoder encodeDouble:self.BookPrice forKey:@"BookPrice"];

  }

//解档

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

    self=[super init];

    if (self) {

        self.bookName= [aDecoder decodeObjectForKey:@"BookName"];

        self.BookPrice= [aDecoder decodeDoubleForKey:@"BookPrice"];

    }

    return  self;

}

 

 

要使用的内中

  //归档(OC对象->NSData)

    NSMutableData *data = [NSMutableData data];

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

    //模型数据

    model *mo=[[model alloc]init];

    mo.bookName=@"APP";

    mo.BookPrice=18.5;

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

    [archiver finishEncoding];

    //Document路径

    NSString *paths = [[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)objectAtIndex:0]stringByAppendingString:@"model.txt"];

    

    if ([data writeToFile:paths atomically:NO]) {

        NSLog(@"写入成功");

    }

    else{

        NSLog(@"写入失败");

    }

}

 

- (void)jied{

    NSString *paths = [[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)objectAtIndex:0]stringByAppendingString:@"model.txt"];

    //解档

    NSMutableData *data = [NSMutableData dataWithContentsOfFile:paths];

    

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

    

    model *mo = [unarchiver decodeObjectForKey:@"mo"];

    //完成解档

    [unarchiver finishDecoding];

 

转载于:https://www.cnblogs.com/zhuzhushen/p/4226732.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值