在没有 IB 的情况下设置委托属性
有没有人展示如何在没有界面生成器的情况下正确设置委托?
http://www.gauravv.com/2009 /12/29/iphone-development-tip-custom-uinavigationbar/
Does anyone show how to set the delegate properly for this without interface builder?
http://www.gauravv.com/2009/12/29/iphone-development-tip-custom-uinavigationbar/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因为它继承自
UINavigationBar
,所以它将包含所有相同的@property
。因此,您可以执行 self.delegate = delegateObject ,它将设置导航栏的委托。如果您在所有者类中定义它,您将执行以下操作:
Since, it inherits from
UINavigationBar
it will contain all of the same@property
's. Thus you can doself.delegate = delegateObject
and it will set the delegate of the nav bar.If you are defining it in the owner class you would do the following: