iOS之应用数据存储常用的五种方式(一)

时间:2022-04-08 20:33:35

1、XML属性列表(plist)归档
2、Preference(偏好设置:NSUserDefaults)
3、NSKeyedArchiver归档(NSCoding)
4、SQLite3
5、Core Data

今天先讲解前三个,后两个后续更新。

1.XML属性列表(plist)归档

// 存储
- (IBAction)save:(id)sender {
// Plist存储
// 只有iOS中才有plist

// plist存储本质,就是帮你生成一个Plist文件
// 谁才能做Plist,(数组,字典)
// plist文件注意点:plist文件不能存储自定义对象

NSArray *arr = @[@"123",@1];

// File:文件的全路径
// 1.先明确文件存储到哪,应用沙盒的某个文件夹中

// 获取应用沙盒路径
// NSString *homePath = NSHomeDirectory();
// NSLog(@"%@",homePath);

// 获取Caches文件夹路径
// directory:搜索文件夹
// domainMask:在哪个范围内搜索 NSUserDomainMask:在用户中查找
// expandTilde: YES :在路径展开 NO:不展开路径 ~:代替沙盒路径
NSString *cachesPath = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES)[0];

// 拼接文件名
NSString *filePath = [cachesPath stringByAppendingPathComponent:@"arr.plist"];


[arr writeToFile:filePath atomically:YES];

}


// 读取
- (IBAction)read:(id)sender {
NSString *cachesPath = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES)[0];

// 拼接文件名
NSString *filePath = [cachesPath stringByAppendingPathComponent:@"arr.plist"];

// 读取:以什么形式存储就以什么形式读取
NSArray *arr = [NSArray arrayWithContentsOfFile:filePath];

NSLog(@"%@",arr);

}

2、Preference(偏好设置:NSUserDefaults)

- (IBAction)save:(id)sender {

// 偏好设置存储 NSUserDefaults

// 什么时候使用偏好设置存储
// 偏好设置好处,1.快速进行键值对的存储 2.不关系文件名

// 获取NSUserDefaults单例对象
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];

// @"123" @"num"
[defaults setObject:@"123" forKey:@"num"];
// bool,int YES isOn
[defaults setBool:YES forKey:@"isOn"];

}

- (IBAction)read:(id)sender {

// NSUserDefaults
NSString *num = [[NSUserDefaults standardUserDefaults] objectForKey:@"num"];
BOOL ison = [[NSUserDefaults standardUserDefaults] boolForKey:@"isOn"];


}

3、NSKeyedArchiver归档(NSCoding)

// 点击存储的时候调用
- (IBAction)save:(id)sender {

// 存储自定义对象使用归档

// 创建自定义对象
Person *p = [[Person alloc] init];
p.age = 18;
p.name= @"xmg";

// 获取caches文件夹
NSString *cachesPath = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES)[0];

// 拼接文件名
NSString *filePath = [cachesPath stringByAppendingPathComponent:@"person.data"];

// object:需要归档的对象
// file:文件全路径
// 任何对象都可以进行归档
[NSKeyedArchiver archiveRootObject:p toFile:filePath];
// 调用自定义对象的 encodeWithCoder:
// 如果一个自定义对象需要归档,必须遵守NSCoding协议,并且实现协议的方法.

}
// 点击读取的时候调用
- (IBAction)read:(id)sender {

// 读取文件
// 获取caches文件夹
NSString *cachesPath = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES)[0];

// 拼接文件名
NSString *filePath = [cachesPath stringByAppendingPathComponent:@"person.data"];

// 存进去是什么,读取出来也是什么对象
// 解档
Person *p = [NSKeyedUnarchiver unarchiveObjectWithFile:filePath];
// 底层会调用自定义对象的initWithCoder
NSLog(@"%@ %d",p.name,p.age);

}


Person.h
#import <Foundation/Foundation.h>


@interface Person : NSObject<NSCoding>

@property (nonatomic, assign) int age;

@property (nonatomic, strong) NSString *name;

@end


Person.m
#import "Person.h"

@implementation Person

// 什么作用:告诉系统模型中的哪些属性需要归档
// 什么时候调用:把一个自定义对象,归档的时候调用
- (void)encodeWithCoder:(NSCoder *)aCoder
{
// aCoder用来归档
// name
[aCoder encodeObject:_name forKey:@"name"];
// age
[aCoder encodeInt:_age forKey:@"age"];

}

// 什么时候调用:解析一个文件的时候调用
// 作用:告诉系统模型中的哪些属性需要解档
- (id)initWithCoder:(NSCoder *)aDecoder
{
// [super initWithCoder]
if (self = [super init]) {

// 注意:一定要记得给成员属性赋值

// name
_name = [aDecoder decodeObjectForKey:@"name"];

// age
_age = [aDecoder decodeIntForKey:@"age"];

}

return self;

}

@end