取消引用(释放?)NSMutableArray
在我的班级中,我声明并使用了 NSMutableArray。然而,此类的方法之一需要清除整个数组并向其中添加新的对象集。 清除它并从头开始向其中添加新对象的最佳方法是什么?
问候 彼得
in my class i have a NSMutableArray declared and used. One of the methods of this class however needs to clear the entire array and add new set of objects into it.
What would be the best approach to clear it out and add new objects to it from scratch?
regards
peter
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
调用
然后添加您的对象:
添加此链接以获取更多信息: http://www.techotopia.com/index.php/Working_with_Objective-C_Array_Objects
Call
Then add your objects:
Added this link for more info: http://www.techotopia.com/index.php/Working_with_Objective-C_Array_Objects
您可以释放它并分配一个新的。注意:这将导致数组中的每个对象也被发送一条释放消息,因此您需要将它们保留在其他地方。
You could release it and allocate a new one. Note: this will cause every object in the array to be sent a release message as well, so you would need to be retaining them elsewhere.
假设您的新内容位于数组中,您希望:
这会将
myArray
的内容替换为myNewContentsArray
的内容,而后者保持不变。Assuming you have your new contents in an array, you want:
This will replace the contents of
myArray
with the contents ofmyNewContentsArray
, leaving the latter untouched.