iOS Archiving/Unarchiving, 以及文件系统

本文详细介绍了如何利用Objective-C编程语言创建Person与Body类,实现对象的存取与解取过程,包括文档路径获取、对象归档与解归档的操作,并提供了相应的类定义和实例化示例。
应用的sandbox:  Documents Library tmp
沙盒的根目录下有这3个可操作的文件夹.
获得Document的path:
方法一:    NSArray *documentPaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
                 NSString *ourDocumentPath = [documentPaths objectAtIndex:0];
方法二:      

       NSString *sandboxPath = NSHomeDirectory();

       NSString *ourDocumentPath = [sandboxPath stringByAppendingPathComponent:@"Documents"];



都会的到这样的结果:

/var/mobile/Applications/9EFD60C1-E627-4CCD-BA62-24ED952A0922/Documents




Archiving(固化)/Unarchiving(解固)

    NSString *sandboxPath = NSHomeDirectory();

    NSString *archivePath = [sandboxPath stringByAppendingPathComponent:@"Documents/archive.data"];

    

    Person *p = [[Person alloc] init];

    Body *b = [[Body alloc] init];

    b.hand  = @"my hand";

    p.body = b;

    [NSKeyedArchiver archiveRootObject:p toFile:archivePath];

    

    Person *up = [NSKeyedUnarchiver unarchiveObjectWithFile:archivePath];

    NSLog(@"%@", up.body.hand);


下面是需要的连个类: body ,person :

#import <Foundation/Foundation.h>

#import "Body.h"


@interface Person : NSObject <NSCoding


@property Body *body;



@end


#import "Person.h"


@interface Person ()

{

    NSInteger age;

}


@end


@implementation Person

@synthesize body;


- (void) encodeWithCoder:(NSCoder *)aCoder

{

    [aCoder encodeObject:body forKey:@"body"];

    [aCoder encodeInteger:age forKey:@"age"];

}


-(id) initWithCoder:(NSCoder *)aDecoder

{

    self = [super init];

    if (self) {

        self.body = [aDecoder decodeObjectForKey:@"body"];

    }

    return self;

}


@end


#import <Foundation/Foundation.h>


@interface Body : NSObject <NSCoding>


@property NSString *hand;


@end


#import "Body.h"


@implementation Body

@synthesize hand;


-(void) encodeWithCoder:(NSCoder *)aCoder

{

    [aCoder encodeObject:hand forKey:@"hand"];

}


-(id) initWithCoder:(NSCoder *) aDecoder

{

    self = [super init];

    if (self) {

        hand = [aDecoder decodeObjectForKey:@"hand"];

    }

    return self;

}


@end





评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值