1. 源代码下载链接:06-归档普通对象.zip
    34.2 KB
  2. // MJPerson.h

  3. //
  4. //  MJPerson.h
  5. //  06-归档普通对象
  6. //
  7. //  Created by apple on 13-12-11.
  8. //  Copyright (c) 2013年itcast. All rights reserved.
  9. //
  10. #import<Foundation/Foundation.h>
  11. @interfaceMJPerson : NSObject <NSCoding>
  12. @property(nonatomic,copy) NSString *name;
  13. @property(nonatomic,assign)intage;
  14. @property(nonatomic,assign)doubleheight;
  15. @end
  16. // MJPerson.m

    Map

  17. //
  18. //  MJPerson.m
  19. //  06-归档普通对象
  20. //
  21. //  Created by apple on 13-12-11.
  22. //  Copyright (c) 2013年itcast. All rights reserved.
  23. //
  24. #import"MJPerson.h"
  25. @implementationMJPerson
  26. #pragma mark将对象归档的时候会调用(将对象写入文件之前会调用)
  27. //在这个方法说清楚:
  28. // 1.哪些属性需要存储
  29. // 2.怎样存储这些属性
  30. - (void)encodeWithCoder:(NSCoder *)encoder
  31. {
  32.    //将_name属性值进行编码(会将_name的值存进文件)
  33.     [encoder encodeObject:_name forKey:@"name"];
  34.    
  35.     [encoder encodeInt:_age forKey:@"age"];
  36.    
  37.    
  38.     [encoder encodeDouble:_height forKey:@"height"];
  39.    
  40.     NSLog(@"Person---encodeWithCoder-----");
  41. }
  42. #pragma mark当从文件中解析对象时调用
  43. //在这个方法说清楚:
  44. // 1.哪些属性需要解析(读取)
  45. // 2.怎样解析(读取)这些属性
  46. - (id)initWithCoder:(NSCoder *)decoder
  47. {
  48.     NSLog(@"Person---initWithCoder-----");
  49.    if(self = [super init]) {
  50.         _name = [decoder decodeObjectForKey:@"name"];
  51.         _age = [decoder decodeIntForKey:@"age"];
  52.         _height = [decoder decodeDoubleForKey:@"height"];
  53.     }
  54.    return self;
  55. }
  56. @end
  57. // MJStudent.h

    Map

  58. //
  59. //  MJStudent.h
  60. //  06-归档普通对象
  61. //
  62. //  Created by apple on 13-12-11.
  63. //  Copyright (c) 2013年itcast. All rights reserved.
  64. //
  65. #import"MJPerson.h"
  66. @interfaceMJStudent : MJPerson
  67. @property(nonatomic,copy) NSString *no;
  68. @end
  69. // MJStudent.m

    Map

  70. //
  71. //  MJStudent.m
  72. //  06-归档普通对象
  73. //
  74. //  Created by apple on 13-12-11.
  75. //  Copyright (c) 2013年itcast. All rights reserved.
  76. //
  77. #import"MJStudent.h"
  78. @implementation MJStudent
  79. - (void)encodeWithCoder:(NSCoder *)encoder
  80. {
  81.     [super encodeWithCoder:encoder];
  82.    
  83.     [encoder encodeObject:_no forKey:@"no"];
  84.    
  85.     NSLog(@"MJStudent---encodeWithCoder-----");
  86. }
  87. //本文永久链接,转载请注明出处:http://www.cnblogs.com/ChenYilong/p/3490624.html
  88. - (id)initWithCoder:(NSCoder *)decoder
  89. {
  90.    if(self= [superinitWithCoder:decoder]) {
  91.         NSLog(@"MJStudent---encodeWithCoder-----");
  92.         _no = [decoder decodeObjectForKey:@"no"];
  93.     }
  94.    returnself;
  95. }
  96. @end
  97. // MJViewController.h

    Map

  98. //
  99. //  MJViewController.h
  100. //  06-归档普通对象
  101. //
  102. //  Created by apple on 13-12-11.
  103. //  Copyright (c) 2013年itcast. All rights reserved.
  104. //
  105. #import<UIKit/UIKit.h>
  106. @interfaceMJViewController : UIViewController
  107. - (IBAction)save;
  108. - (IBAction)read;
  109. @end
  110. // MJViewController.m

    Map

  111. //
  112. //  MJViewController.m
  113. //  06-归档普通对象
  114. //
  115. //  Created by apple on 13-12-11.
  116. //  Copyright (c) 2013年itcast. All rights reserved.
  117. //
  118. #import"MJViewController.h"
  119. #import"MJPerson.h"
  120. #import"MJStudent.h"
  121. @interfaceMJViewController ()
  122. @end
  123. @implementationMJViewController
  124. - (void)viewDidLoad
  125. {
  126.     [superviewDidLoad];
  127. // Do any additional setup after loading the view, typically from a nib.
  128. }
  129. - (void)didReceiveMemoryWarning
  130. {
  131.     [superdidReceiveMemoryWarning];
  132.    // Dispose of any resources that can be recreated.
  133. }
  134. - (IBAction)save {
  135. //    MJPerson *p = [[MJPerson alloc] init];
  136. //    p.name = @"jack";
  137. //    p.age = 10;
  138. //    p.height = 1.55;
  139. //   
  140. //    NSString *path = @"/Users/apple/Desktop/person.data";
  141. //    //归档
  142. //    [NSKeyedArchiver archiveRootObject:p toFile:path];
  143.    
  144.     MJStudent *stu = [[MJStudent alloc] init];
  145.     stu.name =@"rose";
  146.     stu.age =20;
  147.     stu.height =1.75;
  148.     stu.no =@"110";
  149.    
  150.     NSString *path =@"/Users/apple/Desktop/person.data";
  151.    
  152.     [NSKeyedArchiver archiveRootObject:stu toFile:path];
  153. }
  154. - (IBAction)read {
  155.     NSString *path =@"/Users/apple/Desktop/person.data";
  156.    
  157.     MJStudent *stu = [NSKeyedUnarchiver unarchiveObjectWithFile:path];
  158.    
  159.     NSLog(@"%@ - %d - %f- %@", stu.name, stu.age, stu.height, stu.no);
  160. ////本文永久链接,转载请注明出处:http://www.cnblogs.com/ChenYilong/p/3490624.html
  161. //    //读档(反归档)
  162. //    MJPerson *p = [NSKeyedUnarchiver unarchiveObjectWithFile:path];
  163. //   
  164. //    NSLog(@"%@ - %d - %f", p.name, p.age, p.height);
  165. }
  166. @end

归档普通对象Demo示例程序源代码的更多相关文章

  1. 03.WebView演练-iOS开发Demo(示例程序)源代码

    技术博客http://www.cnblogs.com/ChenYilong/   新浪微博http://weibo.com/luohanchenyilong   //转载请注明出处--本文永久链接:h ...

  2. iOS多线程 iOS开发Demo(示例程序)源代码

    本系列所有开发文档翻译链接地址:iOS7开发-Apple苹果iPhone开发Xcode官方文档翻译PDF下载地址(2013年12月29日更新版)   iOS程序源代码下载链接:01.大任务.zip22 ...

  3. 代理设计模式iOS开发Demo(示例程序)源代码

        iOS程序源代码下载链接:03-代理设计模式.zip28.3 KB // main.m // //  main.m //  03-代理设计模式 // //  Created by apple ...

  4. 01-QQ 3-最终重构版 Demo示例程序源代码

      源代码下载链接:01-QQ 3.zip292.5 KB // QQAppDelegate.h Map // //  QQAppDelegate.h //  01-QQ // //  Created ...

  5. 01-导航实例-QQ空间Demo示例程序源代码

    01-导航实例-QQ空间.zip62.4 KB // MJLoginViewController.h Map // //  MJLoginViewController.h //  01-导航实例-QQ ...

  6. 01-modal Demo示例程序源代码

    源代码下载链接:01-modal.zip37.8 KB // MJAppDelegate.h // //  MJAppDelegate.h //  01-modal // //  Created by ...

  7. 02-更改窗口的根控制器 Demo示例程序源代码

      源代码下载链接:02-更改窗口的根控制器.zip18.0 KB // MJAppDelegate.h // //  MJAppDelegate.h //  02-更改窗口的根控制器 // //  ...

  8. 12.13记录//QQDemo示例程序源代码

            笔记的完整版pdf文档下载地址: https://www.evernote.com/shard/s227/sh/ac692160-68c7-4149-83ea-0db5385e28b0 ...

  9. kafka_2.11-0.8.2.1+java 生产消费程序demo示例

      Kafka学习8_kafka java 生产消费程序demo示例 kafka是吞吐量巨大的一个消息系统,它是用scala写的,和普通的消息的生产消费还有所不同,写了个demo程序供大家参考.kaf ...

随机推荐

  1. java使用java.util.Properties读取properties文件的九种方法

    直接上代码: package com.test.test; import java.io.BufferedInputStream; import java.io.FileInputStream; im ...

  2. 激活Windows Server 2008R2

    1. 用管理员身份运行mini-KMS_Activator_v1.053_ENG 2. 点击倒数第二个菜单Activation Windows VL 选择数字1 下一步选择Y 不管后面报不报错 3. ...

  3. AutoMapper.RegExtension 介绍

    AutoMapper.RegExtension 为一个特小特小特小的用来根据约定自动调用AutoMapper中的方法配置映射的扩展库.你可以引入该库也可以将源码中核心部分的代码文件夹整个拷贝至项目中. ...

  4. Ubuntu16.04安装Zabbix

    基于Zabbix+MySQL+Apache(可选) apt-get install php7.0-bcmath php7.0-xml php7.0-mbstring安装Zabbix所需的几个PHP模块 ...

  5. Unity和Lua交互

    用lua就表示项目用到了热更新,通常每次热更新都会从服务器获取最新的lua脚本放到Android/ios设备的本地目录下,但是lua应该放到哪个目录下呢,这里就先说说lua里面的路径问题 1.不可以放 ...

  6. TP5 急速上手 语法规则

    Tp5  规则 命名规范 目录和文件名采用‘小写+下划线’,并且以小写字母开头: 类库.函数文件统一以.php为后缀: 类的文件名均以命名空间定义,并且命名空间的路径和类库文件所在路径一致(包括大小写 ...

  7. 3.爬虫 urlib库讲解 总结

    urllib库的总结: 用ProcessOn(安利这个软件,够用了)根据前面的几节内容做了个思维导图. urllib库一共有四个模块: request:它是最基本的模块,可以用来模拟发送请求 erro ...

  8. day02 智能合约

    上午 1>部署智能合约网络 语法 require 2>利用第三方的节点 同步到以太坊 3>智能合约部署的步骤: 1.查看区块 2.发布合约 deploy后台经历的事情:就是部署合约的 ...

  9. Java中IO——NIO

    一.引入 当引入一些新功能的时候,那说明之前的设计可能还需要完善. 1.阻塞式 在传统的IO输入输出中,如果我们从流中去读数据,而数据源中没有数据时,程序就会阻塞该线程.阻塞式线程的一种基本状态,可以 ...

  10. 【EasyNetQ】- 简介

    EasyNetQ是一个简单易用的,稳定的的RabbitMQ .NET API . 如果您只想尽快启动并运行,请转到“ 快速开始”指南. EasyNetQ的目标是提供一个库,使得在.NET中使用Rabb ...