6

我有一个界面:

#import <Foundation/Foundation.h>

@interface Picture : NSObject;

@property (readonly) NSString *filepath;
- (UIImage *)image;

@end

和实施:

#import "Picture.h"

#define kFilepath @"filepath"

@interface Picture () <NSCoding> {
    NSString *filepath;
}

@end


@implementation Picture
@synthesize filepath;

- (id)initWithCoder:(NSCoder *)aDecoder {
    self = [super initWithCoder:aDecoder];
    return self;

}

- (void)encodeWithCoder:(NSCoder *)aCoder {
    [aCoder encodeObject:filepath forKey:kFilepath];
}

- (UIImage *)image {
    return [UIImage imageWithContentsOfFile:filepath];
}

@end

我收到错误:ARC 问题 - 'NSObject' 没有可见的@interface 声明选择器'initWithCoder:'

使用 ARC 时,NSCoding 有什么不同吗?谢谢

4

1 回答 1

14

ARC 和手动引用计数没有什么不同。NSObject不符合NSCoding,因此不提供-initWithCoder:or -encodeWithCoder:。只是不要调用这些方法的超类实现。

- (id)initWithCoder: (NSCoder *)aCoder {
    self = [super init];
    if (self) {
        [aCoder decodeObject: filepath forKey: kFilepath];
    }
    return self;
}
于 2012-04-28T11:24:35.463 回答