ios下的数据持久化技术
应用程序沙盒
NSBundle,xxx.app
NSString *bundlePath = [[NSBundle mainBundle] bundlePath];
Documents:应用程序的关键将数据(指不可再生的数据)存储在Documents中,这个目录不会被iTunes同步。
// 获取Documents目录
NSString *documentsDirectory = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)[0];
Library:Library中有Caches和Preferences两个文件,Caches用于存放应用的支持文件,保存应用程序再次启动过程中需要的信息。Preferences存放NSUserDefaults写的数据,即应用程序偏好。Library文件会被iTunes同步。
NSString *libraryPath = [NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES) objectAtIndex:0];
tmp:tmp目录供应用程序存储临时文件。当iOS设备执行同步时,iTunes不会备份tmp中的文件,但在不需要这些文件时,应用程序要删除tmp中的文件,以免占用文件系统的空间。
// 获取tmp目录
NSString *tmpDirectory = NSTemporaryDirectory();
ios下的数据持久化大致有以下几种:NSUserDefault、Keychain、文件存储、数据库存储。
NSUserDefault
小规模,弱业务相关的数据可以用NSUserDefault存储。比如登录用户的密码,用户名等。NSUserDefault为floats、doubles、integers、booleans、urls等提供了非常方便的访问方法,NSUserDefault的存储必须是对象类型的,如NSData、NSString、NSNumber、NSDate、NSArray、NSDictionary等。如果你想存储自定义的对象,必须将该对象转成NSData实例。
NSUserDefault的数据都存储在应用程序的沙盒中(documents/Preferences 里面的plist文件里),当你removeObjectForKey或者应用重装,这个key就没有了。
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); // documents路径
NSUserDefaults *def = [NSUserDefaults standardUserDefaults];
// 存储数据
NSInteger integer = [@"100" integerValue];
[def setInteger:integer forKey:@"integerValue"];
[def setFloat:3.f forKey:@"floatValue"];
NSDate *date = [NSDate date];
[def setObject:date forKey:@"today"];
[def synchronize]; // 将NSUserDefault同步到沙盒中,可以防止数据遗失
// 读数据
NSInteger integerValue = [def integerForKey:@"integerValue"];
float a = [def floatForKey:@"floatValue"];
NSDate *today = [def valueForKey:@"today"];
文件存储
文件存储包括plist,archive,stream等。
1、Plist针对一些集合类调用writeToFile等方法来读写数据,但是不能存储自定义的数据类。plist文件被放在沙盒的documents文件下。
// 创建plist文件
NSString *plistPath = [[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0] stringByAppendingPathComponent:@"plistDemo"];
NSLog(@"plistPath = %@",plistPath);
// 写入数据
NSDictionary *dataDic = @{@"row1":@"value1",@"row2":@"value2"};
[dataDic writeToFile:plistPath atomically:YES];
// 读取数据
NSDictionary *valueDic = [NSDictionary dictionaryWithContentsOfFile:plistPath];
NSLog(@"valueDic = %@",valueDic);
2、Archive归档可以保存自定义对象,实际上就是用NSKeyedArchiver对自定义的对象进行编码和解码,因此Archive必须实现NSCoding和NSCoping协议。归档数据文件被放在沙盒的documents文件下。
#import <Foundation/Foundation.h>
interface Person : NSObject<NSCopying,NSCoding>
property (nonatomic, strong) NSString *name;
property (nonatomic, assign) int age;
@end
#import "Person.h"
@implementation Person
#pragma mark - NSCoding
// 对基本数据类型或者集合数据进行keyValue的编码
-(void)encodeWithCoder:(NSCoder *)aCoder{
[aCoder encodeObject:self.name forKey:@"name"];
[aCoder encodeInt:self.age forKey:@"age"];
}
// decoding,返回Person模型本身
-(id)initWithCoder:(NSCoder *)aDecoder{
if (self = [super init]) {
self.name = [aDecoder decodeObjectForKey:@"name"];
self.age = [aDecoder decodeIntForKey:@"age"];
}
return self;
}
#pragma mark - NSCopying
-(id)copyWithZone:(NSZone *)zone{
Person *person = [[self class] allocWithZone:zone];
person.name = [self.name copyWithZone:zone];
person.age = self.age;
return person;
}
@end
Person *person = [[Person alloc] init];
person.name = @"Elena";
person.age = 25;
// 创建归档对象路径
NSString *arcPath = [[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0] stringByAppendingPathComponent:@"ArchDemo"];
NSLog(@"arcPath = %@",arcPath);
// 归档对象
NSMutableData *arData = [[NSMutableData alloc] init];
NSKeyedArchiver *arch = [[NSKeyedArchiver alloc] initForWritingWithMutableData:arData];
[arch encodeObject:person forKey:@"person"];
[arch finishEncoding];
[arData writeToFile:arcPath atomically:YES];
BOOL flag = [NSKeyedArchiver archiveRootObject:person toFile:arcPath];
NSLog(@"flag = %d",flag);
// 解档对象
Person *unPerson = [NSKeyedUnarchiver unarchiveObjectWithFile:arcPath];
NSLog(@"%@",unPerson.name);
NSLog(@"%d",unPerson.age);
数据库存储
ios下的数据库存储方案比较多,其中有苹果自带的CoreData,第三方的FMDB以及Realm。数据库方案主要是便于增删查改,当数据有比较强的业务关系时,用数据库是非常方便的。
1.CoreData
2.FMDB
3.Realm
- ....