溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

基于文件的存儲

發(fā)布時(shí)間:2020-07-17 02:20:18 來源:網(wǎng)絡(luò) 閱讀:479 作者:ymanmeng123 欄目:移動(dòng)開發(fā)

在iOS開發(fā)中,經(jīng)常需要將數(shù)據(jù)存儲到本地,實(shí)現(xiàn)的策略有很多,本篇文章簡單介紹一下文件存儲方式。


  • 存儲位置

我們可以將各種各樣的數(shù)據(jù)存儲到本地,在iOS應(yīng)用中,這些文件應(yīng)當(dāng)存儲在沙盒中

如果是需要持久化的數(shù)據(jù)應(yīng)當(dāng)存儲在沙盒的Documents目錄當(dāng)中,如:

NSString * docPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES) lastObject];
NSString * path = [docPath stringByAppendingPathComponent:@"file.txt"];


  • 存儲的數(shù)據(jù)格式

二進(jìn)制數(shù)據(jù):使用NSFileHandle類,如:

NSFileHandle * fh = [NSFileHandle fileHandleForWritingAtPath:path];
[fh writeData:data];

    其中data是一個(gè)NSData對象,可以是任何數(shù)據(jù)


plist格式:與OC中的字典、數(shù)組、數(shù)值對象對應(yīng)的非常好

    這幾種對象都可以有直接進(jìn)行文件操作的方法,如:arrayWithContentOfFile:  writeToFile:


JSON/XML格式:

    網(wǎng)絡(luò)開發(fā)中,網(wǎng)絡(luò)上的數(shù)據(jù)特別是移動(dòng)端進(jìn)行網(wǎng)絡(luò)通信中的數(shù)據(jù)大部分采用JSON/XML格式

    從網(wǎng)絡(luò)獲取這些格式的數(shù)據(jù)封裝在NSData對象中,可以直接調(diào)用NSData下面的方法進(jìn)行文件存儲:

+ (instancetype)dataWithContentsOfFile:(NSString *)path
- (BOOL)writeToFile:(NSString *)path atomically:(BOOL)atomically


  • 歸檔存儲

另一個(gè)特殊的存儲方式是將模型對象直接進(jìn)行歸檔存儲

要求:模型對象遵循NSCoding協(xié)議,并實(shí)現(xiàn)協(xié)議中的兩個(gè)協(xié)議方法

如:

//AMPerson.h
@interface AMPerson : NSObject <NSCoding>

@property (nonatomic) NSString * name;

@property (nonatomic) NSNumber * age;

@end
//AMPerson.m
- (void)encodeWithCoder:(NSCoder *)aCoder
{//NSCoder是編碼器對象
    [aCoder encodeObject:self.name forKey:@"aaa"];
    [aCoder encodeObject:self.age forKey:@"bbb"];
}

- (instancetype)initWithCoder:(NSCoder *)aDecoder
{
    if ( self = [super init] ) {
        self.name = [aDecoder decodeObjectForKey:@"aaa"];
        self.age = [aDecoder decodeObjectForKey:@"bbb"];
    }
    return self;
}
//歸檔存儲
AMPerson * p1 = [[AMPerson alloc] init];
p1.name = @"aaa";
p1.age = @10;
AMStudent * p2 = [[AMStudent alloc] init];
p2.name = @"bbb";
p2.age = @20;
p2.score = @99;
AMPerson * p3 = [[AMPerson alloc] init];
p3.name = @"ccc";
p3.age = @30;
NSArray * arr = @[p1, p2, p3];

[NSKeyedArchiver archiveRootObject:arr toFile:path];
//解檔讀取
NSArray * arr = [NSKeyedUnarchiver unarchiveObjectWithFile:path];




向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI