Objective-C 块对象可以有关联对象吗?
如果可以的话,使用它有什么问题吗?
If it can, are there any gotchas to using it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如果可以的话,使用它有什么问题吗?
If it can, are there any gotchas to using it?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
是的,你可以。我刚刚尝试过。这是有道理的,因为块是
NSBlock
(私有类)的实例,它本身继承自NSObject
。然而,我的天真的测试似乎表明,当块被释放时,关联的对象并未取消关联。 (尽管我可能从未使用过该块的
-dealloc
方法)我会继续试验并尝试更多的东西。
Yes you can. I just tried it. This makes sense, since blocks are instances of
NSBlock
(a private class), which itself inherits fromNSObject
.However, my naïve test seemed to indicate that the associated object was not un-associated when the block was deallocated. (Although it's possible that I was never hitting the block's
-dealloc
method)I'll keep experimenting and try some more stuff.