如何获取对象的所有关联引用的列表?

发布于 2024-10-14 00:56:10 字数 114 浏览 2 评论 0原文

在 Objective-C 2.0 中,是否有一个运行时方法可以列出对象的所有关联引用?我有一个对象,该对象具有对本地范围中定义的变量的关联引用,并且我想确保我仍然可以访问它们以在我的 dealloc 中释放它们。

In Objective-C 2.0, is there a runtime method that lists all of an object's associative references? I have an object with associative references to variables that are defined in a local scope, and I want to make sure I can still access them to release them in my dealloc.

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

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

发布评论

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

评论(1

困倦 2024-10-21 00:56:10

尽管我不确定检索所有对象关联的方法,但我不认为您不必担心释放关联对象。苹果的文档似乎表明,当与它们关联的对象被释放时,它们会得到处理(即使用 OBJC_ASSOCIATION_RETAIN 策略的对象将相应地被释放。)

有兴趣看到一种方法不过要迭代所有关联。

Apple 文档(具体来说,“创建关联”部分)

Although I am not sure about a way to retrieve all of an object's associations, I don't believe you have to worry about releasing associated objects. Apple's docs would seem to suggest they're taken care of when the object they're associated with is deallocated (i.e. an objects using the OBJC_ASSOCIATION_RETAIN policy will be released accordingly.)

Would be interested to see a way to iterate over all associations though.

Apple's doc (specifically, the section "Creating Associations")

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