0

有人可以告诉我如何覆盖-copyWithZone:

假设我有一个 NSString 对象, NSInteger 对象作为类成员。

4

1 回答 1

0

子类化您需要覆盖的类copyWithZone:

您的子类应使用类似于以下的方法:

- (id)copyWithZone:(NSZone *)zone {
    YourClass *copy = [[YourClass alloc] initWith...:<value>];
    return copy;
}
于 2013-12-27T11:38:08.480 回答