iPhone:copyWithZone:在返回之前释放对象?
我在苹果文档中读到有关 copyWithZone 的内容:“返回的对象由发送者隐式保留,发送者负责释放它”。 但是...我怎样才能释放我返回的东西...我快疯了!
代码示例:
- (id)copyWithZone:(NSZone *)zone {
MyObject* obj = [[[self class] allocWithZone:zone] init]; // explicit retain
[obj fillTheObj];
return obj; // implicit retain
}
通知发布应该在哪里? 我保留两次?呃……
I read in the apple documentation about copyWithZone : "The returned object is implicitly retained by the sender, who is responsible for releasing it".
But... How may I release something I return... I'm going crazy !
Sample of code :
- (id)copyWithZone:(NSZone *)zone {
MyObject* obj = [[[self class] allocWithZone:zone] init]; // explicit retain
[obj fillTheObj];
return obj; // implicit retain
}
Where should be the told release ?
I retain twice ? Uhhh...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
发送者负责释放。这意味着调用您的复制方法的人将获得所有权,即:
The sender is responsible for releasing. That means whoever calls your copy method takes ownership, i.e.: