iPhone开发【二十二】数据持久化总结之第3篇—归档(NSKeyedArchiver、NSKeyedUnarchiver)
发布日期:2021-09-28 18:46:35 浏览次数:10 分类:技术文章

本文共 5762 字,大约阅读时间需要 19 分钟。

转载请注明出处,原文网址: 作者:张燕广

实现的功能:1)演示使用归档持久化数据。

关键词:数据持久化 归档  NSKeyedArchiver NSKeyedUnarchiver

1、将上一篇的工程拷贝一份,名称修改为Persistence-archiver,工程结构如下:

2、添加Person.h类,如下:

Person.h:

[cpp] 
  1. #import <Foundation/Foundation.h>  
  2.   
  3. @interface Person : NSObject<NSCoding,NSCopying>   
  4. @property(nonatomic,retain)NSString *name;  
  5. @property(nonatomic,retain)NSString *gender;  
  6. @property(nonatomic,retain)NSString *age;  
  7. @property(nonatomic,retain)NSString *education;  
  8. @end  
Person.m:

[cpp] 
  1. #import "Person.h"  
  2. #define kNameKey        @"name"  
  3. #define kGenderKey      @"gender"  
  4. #define kAgeKey         @"age"  
  5. #define kEducationKey   @"education"  
  6. @implementation Person  
  7. @synthesize name,gender,age,education;  
  8.   
  9. #pragma mark -  
  10. #pragma mark NSCoding  
  11. -(void)encodeWithCoder:(NSCoder *)aCoder{
    //编码  
  12.     [aCoder encodeObject:name forKey:kNameKey];  
  13.     [aCoder encodeObject:gender forKey:kGenderKey];  
  14.     [aCoder encodeObject:age forKey:kAgeKey];  
  15.     [aCoder encodeObject:education forKey:kEducationKey];  
  16. }  
  17.   
  18. -(id)initWithCoder:(NSCoder *)aDecoder{
    //解码  
  19.     if(self == [super init]){  
  20.         name = [[aDecoder decodeObjectForKey:kNameKey]retain];  
  21.         gender = [[aDecoder decodeObjectForKey:kGenderKey]retain];  
  22.         age = [[aDecoder decodeObjectForKey:kAgeKey]retain];  
  23.         education = [[aDecoder decodeObjectForKey:kEducationKey]retain];  
  24.     }  
  25.     return self;  
  26. }  
  27.   
  28. #pragma mark -  
  29. #pragma mark NSCopying  
  30. -(id)copyWithZone:(NSZone *)zone{  
  31.     Person *person = [[[self class]allocWithZone:zone]init];  
  32.     person.name = [[self.name copyWithZone:zone]autorelease];  
  33.     person.gender = [[self.gender copyWithZone:zone]autorelease];  
  34.     person.name = [[self.name copyWithZone:zone]autorelease];  
  35.     person.name = [[self.name copyWithZone:zone]autorelease];  
  36.     return person;  
  37. }  
  38.   
  39. @end  
3、接下来主要修改ViewController

ViewController.h,主要是修改了宏,如下:

[cpp] 
  1. <span style="font-size:18px;">//#define kFileName @"data.plist"  
  2. #define kFileName @"archive"  
  3. #define kDataKey @"Data"  
  4.   
  5. #import <UIKit/UIKit.h>  
  6.   
  7. @interface ViewController : UIViewController  
  8. @property(nonatomic,retain)IBOutlet UITextField *name;  
  9. @property(nonatomic,retain)IBOutlet UITextField *gender;  
  10. @property(nonatomic,retain)IBOutlet UITextField *age;  
  11. @property(nonatomic,retain)IBOutlet UITextField *education;  
  12.   
  13. -(NSString *)dataFilePath;  
  14. -(void)applicationWillResignActive:(NSNotification *)nofication;  
  15.   
  16. @end</span>  
主要修改了ViewController.m,如下:
[cpp] 
  1. <span style="font-size:18px;">#import "ViewController.h"  
  2. #import "Person.h"  
  3.   
  4. @implementation ViewController  
  5. @synthesize name,gender,age,education;  
  6.   
  7. -(NSString *)dataFilePath{  
  8.     NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask,YES);  
  9.     NSString *documentsDirectory = [paths objectAtIndex:0];  
  10.     return [documentsDirectory stringByAppendingPathComponent:kFileName];  
  11. }  
  12.   
  13. - (void)didReceiveMemoryWarning  
  14. {  
  15.     [super didReceiveMemoryWarning];  
  16.     // Release any cached data, images, etc that aren't in use.  
  17. }  
  18.   
  19. #pragma mark - View lifecycle  
  20.   
  21. - (void)viewDidLoad  
  22. {  
  23.     // Do any additional setup after loading the view, typically from a nib.  
  24.     NSString *filePath = [self dataFilePath];  
  25.     NSLog(@"filePath=%@",filePath);  
  26.       
  27.     if([[NSFileManager defaultManager] fileExistsAtPath:filePath]){  
  28.         //属性列表  
  29.         /* 
  30.         NSArray *array = [[NSArray alloc]initWithContentsOfFile:filePath]; 
  31.         name.text = [array objectAtIndex:0]; 
  32.         gender.text = [array objectAtIndex:1]; 
  33.         age.text = [array objectAtIndex:2]; 
  34.         education.text = [array objectAtIndex:3]; 
  35.          
  36.         [array release];*/  
  37.           
  38.         NSData *data = [[NSMutableData alloc]initWithContentsOfFile:[self dataFilePath]];  
  39.         NSKeyedUnarchiver *unarchiver = [[NSKeyedUnarchiver alloc]initForReadingWithData:data];  
  40.         Person *person = [unarchiver decodeObjectForKey:kDataKey];  
  41.         [unarchiver finishDecoding];  
  42.           
  43.         name.text = person.name;  
  44.         gender.text = person.gender;  
  45.         age.text = person.age;  
  46.         education.text = person.education;  
  47.           
  48.         [unarchiver release];  
  49.         [data release];  
  50.     }  
  51.       
  52.     UIApplication *app = [UIApplication sharedApplication];  
  53.     [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(applicationWillResignActive:) name:UIApplicationWillResignActiveNotification object:app];  
  54.       
  55.     [super viewDidLoad];  
  56. }  
  57.   
  58. -(void)applicationWillResignActive:(NSNotification *)nofication{  
  59.       
  60.     //属性列表  
  61.     /* 
  62.     NSMutableArray *array = [[NSMutableArray alloc]init]; 
  63.     [array addObject:name.text]; 
  64.     [array addObject:gender.text]; 
  65.     [array addObject:age.text]; 
  66.     [array addObject:education.text]; 
  67.     [array writeToFile:[self dataFilePath] atomically:YES]; 
  68.     [array release];*/  
  69.       
  70.     Person *person = [[Person alloc]init];  
  71.     person.name = name.text;  
  72.     person.gender = gender.text;  
  73.     person.age = age.text;  
  74.     person.education = education.text;  
  75.       
  76.     NSMutableData *data = [[NSMutableData alloc]init];  
  77.     NSKeyedArchiver *archiver = [[NSKeyedArchiver alloc]initForWritingWithMutableData:data];  
  78.     [archiver encodeObject:person forKey:kDataKey];  
  79.     [archiver finishEncoding];  
  80.       
  81.     [data writeToFile:[self dataFilePath] atomically:YES];  
  82.     [person release];  
  83.     [archiver release];  
  84.     [data release];  
  85. }  
  86.   
  87. - (void)viewDidUnload  
  88. {  
  89.     [super viewDidUnload];  
  90.     // Release any retained subviews of the main view.  
  91.     // e.g. self.myOutlet = nil;  
  92.     self.name = nil;  
  93.     self.gender = nil;  
  94.     self.age = nil;  
  95.     self.education = nil;  
  96. }  
  97.   
  98. -(void)dealloc{  
  99.     [name release];  
  100.     [gender release];  
  101.     [age release];  
  102.     [education release];  
  103. }  
  104.   
  105. - (void)viewWillAppear:(BOOL)animated  
  106. {  
  107.     [super viewWillAppear:animated];  
  108. }  
  109.   
  110. - (void)viewDidAppear:(BOOL)animated  
  111. {  
  112.     [super viewDidAppear:animated];  
  113. }  
  114.   
  115. - (void)viewWillDisappear:(BOOL)animated  
  116. {  
  117.     [super viewWillDisappear:animated];  
  118. }  
  119.   
  120. - (void)viewDidDisappear:(BOOL)animated  
  121. {  
  122.     [super viewDidDisappear:animated];  
  123. }  
  124.   
  125. - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation  
  126. {  
  127.     // Return YES for supported orientations  
  128.     return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);  
  129. }  
  130.   
  131. @end</span>  
4、通过 可以知道保存数据archive文件的存储位置是:

 /Users/duobianxing/Library/Application Support/iPhone Simulator/5.0/Applications/F694104D-894D-4230-A01B-C62066B3DEC8/Documents

5、总结:

与属性列表相比,归档可以写入复杂的对象(Person类的实例)。

需要源码的网友请留言哦

转载地址:https://blog.csdn.net/h3c4lenovo/article/details/8568227 如侵犯您的版权,请留言回复原文章的地址,我们会给您删除此文章,给您带来不便请您谅解!

上一篇:iPhone开发【二十三】常用IOS开源组件【第1篇】
下一篇:iPhone开发【二十一】数据持久化总结之第2篇—属性文件(.plist)

发表评论

最新留言

表示我来过!
[***.240.166.169]2024年04月17日 02时54分11秒

关于作者

    喝酒易醉,品茶养心,人生如梦,品茶悟道,何以解忧?唯有杜康!
-- 愿君每日到此一游!

推荐文章