4

我想允许对我的类对象进行深层复制并尝试实现 copyWithZone 但调用会[super copyWithZone:zone]产生错误:

error: no visible @interface for 'NSObject' declares the selector 'copyWithZone:'

@interface MyCustomClass : NSObject

@end

@implementation MyCustomClass

- (id)copyWithZone:(NSZone *)zone
{
    // The following produces an error
    MyCustomClass *result = [super copyWithZone:zone];

    // copying data
    return result;
}
@end

我应该如何创建此类的深层副本?

4

1 回答 1

9

您应该将NSCopying协议添加到类的接口中。

@interface MyCustomClass : NSObject <NSCopying>

那么方法应该是:

- (id)copyWithZone:(NSZone *)zone {
    MyCustomClass *result = [[[self class] allocWithZone:zone] init];

    // If your class has any properties then do
    result.someProperty = self.someProperty;

    return result;
}

NSObject不符合NSCopying协议。这就是你不能打电话的原因super copyWithZone:

编辑:根据 Roger 的评论,我更新了copyWithZone:方法中的第一行代码。但根据其他评论,可以放心地忽略该区域。

于 2012-11-29T00:27:39.263 回答