取消引用(释放?)NSMutableArray

发布于 2024-08-19 07:48:38 字数 108 浏览 7 评论 0原文

在我的班级中,我声明并使用了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

Saygoodbye 2024-08-26 07:48:38

调用

[mArray removeAllObjects];

然后添加您的对象:

  • 手动
  • 在数组中
  • 通过迭代另一个数据结构

添加此链接以获取更多信息: http://www.techotopia.com/index.php/Working_with_Objective-C_Array_Objects

Call

[mArray removeAllObjects];

Then add your objects:

  • Manually
  • In an array
  • By iterating over another data structure

Added this link for more info: http://www.techotopia.com/index.php/Working_with_Objective-C_Array_Objects

北城挽邺 2024-08-26 07:48:38

您可以释放它并分配一个新的。注意:这将导致数组中的每个对象也被发送一条释放消息,因此您需要将它们保留在其他地方。

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.

雪若未夕 2024-08-26 07:48:38

假设您的新内容位于数组中,您希望:

[myArray setArray:myNewContentsArray];

这会将 myArray 的内容替换为 myNewContentsArray 的内容,而后者保持不变。

Assuming you have your new contents in an array, you want:

[myArray setArray:myNewContentsArray];

This will replace the contents of myArray with the contents of myNewContentsArray, leaving the latter untouched.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文