objective-c – initWithCoder:在NSObject中不可见?

前端之家收集整理的这篇文章主要介绍了objective-c – initWithCoder:在NSObject中不可见?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个界面:
#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有什么不同吗?
谢谢

解决方法

ARC和手动引用计数之间没有什么不同. NSObject不符合NSCoding,因此不提供-initWithCoder:或-encodeWithCoder:.只是不要调用那些方法的超类实现.
- (id)initWithCoder: (NSCoder *)aCoder {
    self = [super init];
    if (self) {
        [aCoder decodeObject: filepath forKey: kFilepath];
    }
    return self;
}
原文链接:https://www.f2er.com/c/116533.html

猜你在找的C&C++相关文章