微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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.jb51.cc/c/116533.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐