3

そのため、オブジェクトをアプリ サンドボックス ドキュメント ディレクトリごとにアーカイブしたいと考えています。Big Nerd Ranch の iOS プログラミングからほとんどのコードをコピーしたので、何がうまくいかないのかわかりません。とにかく、プロセスのどの部分が機能していないかを診断できますか?それらのどれもエラーを発生させていないが、それでも保存に失敗したためです。これが私のオブジェクトコードです。

@interface Post : NSObject <NSCoding>
{
    NSString *title;
    NSString *date;
    NSString *content;
    NSString *type;
    UIImage *image;
    NSString *timestamp;
}

@property (nonatomic) NSString *title;
@property (nonatomic) NSString *date;
@property (nonatomic) NSString *content;
@property (nonatomic) NSString *type;
@property (nonatomic) UIImage *image;
@property (nonatomic) NSString *timestamp;

@end


@implementation Post
@synthesize title;
@synthesize  date;
@synthesize content;
@synthesize type;
@synthesize image;
@synthesize timestamp;
#pragma mark - NSCoding Protocol
- (void)encodeWithCoder:(NSCoder *)aCoder
{
    [aCoder encodeObject:title forKey:@"title"];
    [aCoder encodeObject:date forKey:@"date"];
    [aCoder encodeObject:content forKey:@"content"];
    [aCoder encodeObject:type forKey:@"type"];
    [aCoder encodeObject:image forKey:@"image"];
    [aCoder encodeObject:timestamp forKey:@"timestamp"];
}

- (id)initWithCoder:(NSCoder *)aDecoder
{
    self = [super init];
    if (self){
        [self setTitle:[aDecoder decodeObjectForKey:@"title"]];
        [self setDate:[aDecoder decodeObjectForKey:@"date"]];
        [self setContent:[aDecoder decodeObjectForKey:@"content"]];
        [self setType:[aDecoder decodeObjectForKey:@"type"]];
        [self setImage:[aDecoder decodeObjectForKey:@"image"]];
        [self setTimestamp:[aDecoder decodeObjectForKey:@"timestamp"]];
    }
    return self;
}

次の方法でストアを使用してアーカイブを保存します

- (NSString *)itemArchivePath
{
    NSArray *documentDirectories = NSSearchPathForDirectoriesInDomains(NSDocumentationDirectory, NSUserDomainMask, YES);

    //Get one and only document directory form that list
    NSString *documentDirectory = [documentDirectories objectAtIndex:0];
    return [documentDirectory stringByAppendingPathComponent:@"posts.archive"];
}

- (BOOL)saveChanges
{
    //return success of failure
    NSString *path = [self itemArchivePath];
    NSLog(@"save path = %@",path);
    return [NSKeyedArchiver archiveRootObject:allPosts toFile:path];
}

保存するために applicationDidEnterBackground の save メソッドを呼び出しました。

- (void)applicationDidEnterBackground:(UIApplication *)application
{    
    BOOL success = [[PostStore sharedStore] saveChanges];
    if (success) {
        NSLog(@"Saved all Posts");
    } else {
        NSLog(@"Could not save any Posts");
    }
}
4

1 に答える 1