弱引用 IBOutlet - @property(分配)?
通过将@property
定义为分配
来弱引用IBOutlet
以防止保留循环,这是一种有效的方法吗?例如,我可能想告诉视图哪个对象是它的控制器;虽然有使用 nextResponder
的解决方法,但简单地向视图添加出口并将控制器分配给视图要容易得多。
Is it a valid approach to reference an IBOutlet
weakly by defining a @property
as assign
in order to prevent a retain-loop? For example, I may want to tell the view what object is its controller; while there are workarounds using nextResponder
, it's much easier to simply add an outlet to the view and assign the controller to the view.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当然,你可以这样做。您引用的案例是您何时应该这样做的一个很好的例子。
Sure, you can do that. The case you cite is a good example of when you should do it.