xml属性列表(plist)归档
PReference(偏好设置)
NSKeyedArchiver归档(NSCoding)
SQLite3
CoreData
每个iOS应用都有自己的应用沙盒(应用沙盒就是文件系统目录),与其他文件系统隔离。其他应用不能访问沙盒中的内容。
模拟器应用沙盒的根路径在: (apple是用户名, 6.0是模拟器版本)
/Users/apple/Library/applicationSupport/iphone Simulator/6.0/Applications
沙盒根目录:NSString *home= NSHomeDirectory();
Documents:(2种方式)
1 NSString *home = NSHomeDirectory(); 2 NSString *documents = [home stringByAppendingPathComponent:@"Documents"];
1 //NSUserDomainMask 代表从用户文件夹下找 2 // YES 代表展开路径中的波浪字符“~” 3 NSArray*array = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask, NO); 4 // 在iOS中,只有一个目录跟传入的参数匹配,所以这个集合里面只有一个元素 5 NSString*documents = [array objectAtIndex:0];
tmp:NSString *tmp = NSTemporaryDirectory();
Library/Caches:(跟Documents类似的2种方法)
Library/Preference:通过NSUserDefaults类存取该目录下的设置信息
属性列表是一种XML格式的文件,拓展名为plist
如果对象是NSString、NSDictionary、NSArray、NSData、NSNumber等类型,就可以使用writeToFile:atomically:方法直接将对象写到属性列表文件中
将一个NSDictionary对象归档到一个plist属性列表中:
1 // 将数据封装成字典 2 NSMutableDictionary *dict =[NSMutableDictionary dictionary]; 3 [dict setObject:@"母鸡"forKey:@"name"]; 4 [dict setObject:@"15013141314"forKey:@"phone"]; 5 [dict setObject:@"27" forKey:@"age"]; 6 7 // 将字典持久化到Documents/stu.plist文件中 8 [dict writeToFile:path atomically:YES];
读取属性列表,恢复NSDictionary对象:
1 // 读取Documents/stu.plist的内容,实例化NSDictionary 2 NSDictionary*dict = [NSDictionary dictionaryWithContentsOfFile:path]; 3 NSLog(@"name:%@",[dict objectForKey:@"name"]); 4 NSLog(@"phone:%@",[dict objectForKey:@"phone"]); 5 NSLog(@"age:%@",[dict objectForKey:@"age"]);
很多iOS应用都支持偏好设置,比如保存用户名、密码、字体大小等设置,iOS提供了一套标准的解决方案来为应用加入偏好设置功能。
每个应用都有个NSUserDefaults实例,通过它来存取偏好设置。比如,保存用户名、字体大小、是否自动登录。
1 NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; 2 [defaultssetObject:@"zhangsan" forKey:@"username"]; 3 [defaultssetFloat:18.0f forKey:@"text_size"]; 4 [defaultssetBool:YES forKey:@"auto_login"];
读取上次保存的设置
1 NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; 2 NSString *username = [defaults stringForKey:@"username"]; 3 floattextSize = [defaults floatForKey:@"text_size"]; 4 BOOLautoLogin = [defaults boolForKey:@"auto_login"];
注意:UserDefaults设置数据时,不是立即写入,而是根据时间戳定时地把缓存中的数据写入本地磁盘。所以调用了set方法之后数据有可能还没有写入磁盘应用程序就终止了。出现以上问题,可以通过调用synchornize方法强制写入
1 [defaults synchornize];
如果对象是NSString、NSDictionary、NSArray、NSData、NSNumber等类型,可以直接用NSKeyedArchiver进行归档和恢复。
不是所有的对象都可以直接用这种方法进行归档,只有遵守了NSCoding协议的对象才可以。
NSCoding协议有2个方法:
1 // 归档一个NSArray对象到Documents/array.archive 2 NSArray *array = [NSArray arrayWithObjects:@”a”,@”b”,nil]; 3 [NSKeyedArchiverarchiveRootObject:array toFile:path];
恢复(解码)NSArray对象
NSArray *array = [NSKeyedUnarchiver unarchiveObjectWithFile:path];
Person.h
1 @interfacePerson : NSObject<NSCoding> 2 @property(nonatomic, copy) NSString *name; 3 @property(nonatomic, assign) int age; 4 @property(nonatomic, assign) float height; 5 @end
Person.m
1 @implementation : Person 2 // 在这个方法中声明需要存储的属性 3 -(void)encodeWithCoder:(NSCoder *)encoder { 4 [super encodeWithCoder:encoder]; 5 [encoder encodeObject:self.name forKey:@"name"]; 6 [encoder encodeInt:self.age forKey:@"age"]; 7 [encoder encodeFloat:self.height forKey:@"height"]; 8 } 9 10 // 构造方法,当初始化对象时会先调该方法 11 -(id)initWithCoder:(NSCoder *)decoder { 12 if (self = [super initWithCoder:decoder]) { 13 self.name = [decoder decodeObjectForKey:@"name"]; 14 self.age = [decoder decodeIntForKey:@"age"]; 15 self.height = [decoder decodeFloatForKey:@"height"]; 16 } 17 return self; 18 } 19 @end
归档
1 Person *person = [[Person alloc] init]; 2 person.name= @"zhangsan"; 3 person.age= 18; 4 person.height= 1.73f; 5 6 [NSKeyedArchiverarchiveRootObject:person toFile:path];
恢复
1 Person *person = [NSKeyedUnarchiver unarchiveObjectWithFile:path];
如果父类也遵守了NSCoding协议,请注意:
应该在encodeWithCoder:方法中加上一句[super encodeWithCode:encode];确保继承的实例变量也能被编码,即也能被归档
应该在initWithCoder:方法中加上一句self = [super initWithCoder:decoder];确保继承的实例变量也能被解码,即也能被恢复