归档普通对象Demo示例程序源代码
- 源代码下载链接:06-归档普通对象.zip
34.2 KB // MJPerson.h
- //
- // MJPerson.h
- // 06-归档普通对象
- //
- // Created by apple on 13-12-11.
- // Copyright (c) 2013年itcast. All rights reserved.
- //
- #import<Foundation/Foundation.h>
- @interfaceMJPerson : NSObject <NSCoding>
- @property(nonatomic,copy) NSString *name;
- @property(nonatomic,assign)intage;
- @property(nonatomic,assign)doubleheight;
- @end
// MJPerson.m
- //
- // MJPerson.m
- // 06-归档普通对象
- //
- // Created by apple on 13-12-11.
- // Copyright (c) 2013年itcast. All rights reserved.
- //
- #import"MJPerson.h"
- @implementationMJPerson
- #pragma mark将对象归档的时候会调用(将对象写入文件之前会调用)
- //在这个方法说清楚:
- // 1.哪些属性需要存储
- // 2.怎样存储这些属性
- - (void)encodeWithCoder:(NSCoder *)encoder
- {
- //将_name属性值进行编码(会将_name的值存进文件)
- [encoder encodeObject:_name forKey:@"name"];
- [encoder encodeInt:_age forKey:@"age"];
- [encoder encodeDouble:_height forKey:@"height"];
- NSLog(@"Person---encodeWithCoder-----");
- }
- #pragma mark当从文件中解析对象时调用
- //在这个方法说清楚:
- // 1.哪些属性需要解析(读取)
- // 2.怎样解析(读取)这些属性
- - (id)initWithCoder:(NSCoder *)decoder
- {
- NSLog(@"Person---initWithCoder-----");
- if(self = [super init]) {
- _name = [decoder decodeObjectForKey:@"name"];
- _age = [decoder decodeIntForKey:@"age"];
- _height = [decoder decodeDoubleForKey:@"height"];
- }
- return self;
- }
- @end
// MJStudent.h
- //
- // MJStudent.h
- // 06-归档普通对象
- //
- // Created by apple on 13-12-11.
- // Copyright (c) 2013年itcast. All rights reserved.
- //
- #import"MJPerson.h"
- @interfaceMJStudent : MJPerson
- @property(nonatomic,copy) NSString *no;
- @end
// MJStudent.m
- //
- // MJStudent.m
- // 06-归档普通对象
- //
- // Created by apple on 13-12-11.
- // Copyright (c) 2013年itcast. All rights reserved.
- //
- #import"MJStudent.h"
- @implementation MJStudent
- - (void)encodeWithCoder:(NSCoder *)encoder
- {
- [super encodeWithCoder:encoder];
- [encoder encodeObject:_no forKey:@"no"];
- NSLog(@"MJStudent---encodeWithCoder-----");
- }
- //本文永久链接,转载请注明出处:http://www.cnblogs.com/ChenYilong/p/3490624.html
- - (id)initWithCoder:(NSCoder *)decoder
- {
- if(self= [superinitWithCoder:decoder]) {
- NSLog(@"MJStudent---encodeWithCoder-----");
- _no = [decoder decodeObjectForKey:@"no"];
- }
- returnself;
- }
- @end
// MJViewController.h
- //
- // MJViewController.h
- // 06-归档普通对象
- //
- // Created by apple on 13-12-11.
- // Copyright (c) 2013年itcast. All rights reserved.
- //
- #import<UIKit/UIKit.h>
- @interfaceMJViewController : UIViewController
- - (IBAction)save;
- - (IBAction)read;
- @end
// MJViewController.m
- //
- // MJViewController.m
- // 06-归档普通对象
- //
- // Created by apple on 13-12-11.
- // Copyright (c) 2013年itcast. All rights reserved.
- //
- #import"MJViewController.h"
- #import"MJPerson.h"
- #import"MJStudent.h"
- @interfaceMJViewController ()
- @end
- @implementationMJViewController
- - (void)viewDidLoad
- {
- [superviewDidLoad];
- // Do any additional setup after loading the view, typically from a nib.
- }
- - (void)didReceiveMemoryWarning
- {
- [superdidReceiveMemoryWarning];
- // Dispose of any resources that can be recreated.
- }
- - (IBAction)save {
- // MJPerson *p = [[MJPerson alloc] init];
- // p.name = @"jack";
- // p.age = 10;
- // p.height = 1.55;
- //
- // NSString *path = @"/Users/apple/Desktop/person.data";
- // //归档
- // [NSKeyedArchiver archiveRootObject:p toFile:path];
- MJStudent *stu = [[MJStudent alloc] init];
- stu.name =@"rose";
- stu.age =20;
- stu.height =1.75;
- stu.no =@"110";
- NSString *path =@"/Users/apple/Desktop/person.data";
- [NSKeyedArchiver archiveRootObject:stu toFile:path];
- }
- - (IBAction)read {
- NSString *path =@"/Users/apple/Desktop/person.data";
- MJStudent *stu = [NSKeyedUnarchiver unarchiveObjectWithFile:path];
- NSLog(@"%@ - %d - %f- %@", stu.name, stu.age, stu.height, stu.no);
- ////本文永久链接,转载请注明出处:http://www.cnblogs.com/ChenYilong/p/3490624.html
- // //读档(反归档)
- // MJPerson *p = [NSKeyedUnarchiver unarchiveObjectWithFile:path];
- //
- // NSLog(@"%@ - %d - %f", p.name, p.age, p.height);
- }
- @end
归档普通对象Demo示例程序源代码的更多相关文章
- 03.WebView演练-iOS开发Demo(示例程序)源代码
技术博客http://www.cnblogs.com/ChenYilong/ 新浪微博http://weibo.com/luohanchenyilong //转载请注明出处--本文永久链接:h ...
- iOS多线程
iOS开发Demo(示例程序)源代码
本系列所有开发文档翻译链接地址:iOS7开发-Apple苹果iPhone开发Xcode官方文档翻译PDF下载地址(2013年12月29日更新版) iOS程序源代码下载链接:01.大任务.zip22 ...
- 代理设计模式iOS开发Demo(示例程序)源代码
iOS程序源代码下载链接:03-代理设计模式.zip28.3 KB // main.m // // main.m // 03-代理设计模式 // // Created by apple ...
- 01-QQ 3-最终重构版
Demo示例程序源代码
源代码下载链接:01-QQ 3.zip292.5 KB // QQAppDelegate.h Map // // QQAppDelegate.h // 01-QQ // // Created ...
- 01-导航实例-QQ空间Demo示例程序源代码
01-导航实例-QQ空间.zip62.4 KB // MJLoginViewController.h Map // // MJLoginViewController.h // 01-导航实例-QQ ...
- 01-modal
Demo示例程序源代码
源代码下载链接:01-modal.zip37.8 KB // MJAppDelegate.h // // MJAppDelegate.h // 01-modal // // Created by ...
- 02-更改窗口的根控制器
Demo示例程序源代码
源代码下载链接:02-更改窗口的根控制器.zip18.0 KB // MJAppDelegate.h // // MJAppDelegate.h // 02-更改窗口的根控制器 // // ...
- 12.13记录//QQDemo示例程序源代码
笔记的完整版pdf文档下载地址: https://www.evernote.com/shard/s227/sh/ac692160-68c7-4149-83ea-0db5385e28b0 ...
- kafka_2.11-0.8.2.1+java 生产消费程序demo示例
Kafka学习8_kafka java 生产消费程序demo示例 kafka是吞吐量巨大的一个消息系统,它是用scala写的,和普通的消息的生产消费还有所不同,写了个demo程序供大家参考.kaf ...
随机推荐
- crontab时间规则
sudo crontab -e 5 * * * *每小时第5分钟执行*/5 * * * *每5分钟执行0 2 * * * 每天凌晨2点执行 cron是一个linux下的定时执行工具,可以在无需人工干预 ...
- howto:在构建基于debian的docker基础镜像时,更换国内包源
debian经常被用作构建应用镜像的基础镜像,如微软在构建linux下的dotnetcore基础镜像时,提供了基于debian 8(jessie)和debian 9(stretch)的镜像. 由于这些 ...
- jmeter插件之jsonpath提取响应结果和做断言
准备工作: 1. jmeter3.X已经自带了提取响应结果的插件:JSON Extractor 2. 下载断言插件:https://jmeter-plugins.org/wiki/JSONPathAs ...
- iOS中的数据库应用
iOS中的数据库应用 SLQLite简介 什么是SQLite SQLite是一款轻型的嵌入式数据库 它占用资源非常的低,在嵌入式设备中,可能只需要几百K的内存就够了 它的处理速度比Mysql.Post ...
- [Linux] umount目录提示device is busy的解决方法
使用sshfs等方式挂载的目录出现问题时,使用umount卸载经常提示device is busy,如果仔细阅读错误提示就可以找到命令lsof和fuser命令. 其实原因就是有进程占用当前目录,导致不 ...
- ubuntu12.04停留在grub界面问题
修改ubuntu 12.04 停留在grub界面的步骤: 1. 在/etc/default/grub配置文件中, 添加一项GRUB_RECORDFAIL_TIMEOUT: GRUB_TIMEOUT=2 ...
- 转 Using $.ajaxPrefilter() To Configure AJAX Requests In jQuery 1.5
Using $.ajaxPrefilter() To Configure AJAX Requests In jQuery 1.5 Posted February 18, 2011 at 6:29 PM ...
- Hadoop伪分布式安装步骤(hadoop0.20.2版本)
最近在学习hadoop,自己下了个视频教程,他的教学版本是hadoop0.20.2版本,现在的最新版本都到了3.0了,版本虽然有点老,但是还是学了一下,觉得有借鉴的价值. 不废话了,开始介绍: 先说一 ...
- cmd端口占用查看和关闭端口
cmd——回车,输入netstat -ano——回车,可以查看已占用的端口,记下端口的PID,然后打开任务管理器,点查看,选择列,勾选PID确定,找到对应的PID,结束进程,如果结束不了或者结束后还不 ...
- Documentation & Markdown
Documentation & Markdown markdown to document & document website generator https://github.co ...