如何制作自定义对象的副本

发布于 2024-09-26 07:47:29 字数 115 浏览 4 评论 0原文

我创建了一个继承自 NSObject 的自定义对象。假设我有一个由这些对象组成的数组。然后我想创建另一个对象,即数组中一个对象的副本。我不想简单地指向数组中的现有对象,我想要一个副本。有没有简单的方法可以做到这一点?

I made a custom object that inherits from NSObject. Let's say I have an array of these objects. Then I want to make another object, that is a copy of one of the objects in the array. I do not want to simply point to an existing object in the array I want a copy. Is there an easy way to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

紫竹語嫣☆ 2024-10-03 07:47:29

实现 NSCopying ,并按如下方式使用它:

MyFoo * theCopy = [[myArray objectAtIndex:0] copy];

请注意,此时 theCopy 是一个保留的对象,当您使用完它时应该将其释放。

Implement the NSCopying protocol on the object, and use it as follows:

MyFoo * theCopy = [[myArray objectAtIndex:0] copy];

Note that theCopy is a retained object at this point, and should be released when you are done with it.

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