码迷,mamicode.com
首页 > 其他好文 > 详细

将模型储存到本地-FastCoder

时间:2016-03-04 16:26:00      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:

//
//  ViewController.m
//  模型转data储存
//
//  Created by 谭启宏 on 16/3/4.
//  Copyright © 2016年 tqh. All rights reserved.
//

#import "ViewController.h"
#import "FastCoder.h"

@interface DataModel1 : NSObject

@property (nonatomic,strong)NSArray *array;
@property (nonatomic,strong)NSDictionary *dic;
@property (nonatomic,copy)NSString *str;
@property (nonatomic,assign)NSInteger age;
//@property (nonatomic,strong)DataModel *model;
@end
@implementation DataModel1

@end



@interface DataModel : NSObject

@property (nonatomic,strong)NSArray *array;
@property (nonatomic,strong)NSDictionary *dic;
@property (nonatomic,copy)NSString *str;
@property (nonatomic,assign)NSInteger age;
@property (nonatomic,strong)DataModel1 *model;
@end

@implementation DataModel


@end


@interface ViewController ()
@end

@implementation ViewController
- (void)viewDidLoad {
    [super viewDidLoad];
    
    DataModel *model00 = [[DataModel alloc]init];
    model00.array = @[@"haha",@"1231212"];
    model00.dic = @{@"111111111111--1-11--1-":@"1111"};
    model00.str = @"11111";
    model00.age = 123312132312;
    DataModel *model01 = [[DataModel alloc]init];
    model01.array = @[@"haha",@"1231212"];
    model01.dic = @{@"3213":@"1111"};
    model01.str = @"11111";
    model01.age = 123312132312;
    
    
    DataModel *model = [[DataModel alloc]init];
    model.array = @[model00,model01];
    model.dic = @{@"3213":@"1111"};
    model.str = @"11111";
    model.age = 123312132312;
    
    DataModel1 *model1 = [[DataModel1 alloc]init];
//    model1.str = @"1121211";
    model1.array = @[@"1111",@"11111"];
    model.model = model1;
    
    
    
    
    NSData *data = [FastCoder dataWithRootObject:model];
    
    DataModel *MODEL     =[FastCoder objectWithData:data];
    
    DataModel *model112 = MODEL.array[0];
    NSLog(@"%@",model112.dic);
    NSLog(@"%@",MODEL.dic);
    NSLog(@"%@",MODEL.str);
    NSLog(@"%ld",MODEL.age);
    
    NSLog(@"%@",model.model.array);
    NSLog(@"%@",MODEL.model.str);
    if (MODEL.model.str == nil) {
        NSLog(@"");
    }else {
        NSLog(@"晓不得");
    }
    NSLog(@"%@",data);
    
}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

@end

由于测试所以没有写储存到本地,但是把模型转化为了NSData类型了,几种储存方式都可以的

技术分享

注意:

技术分享

将模型储存到本地-FastCoder

标签:

原文地址:http://www.cnblogs.com/hxwj/p/5242210.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!