以编程方式将 UIButton 添加到 UINavigationController
在 Interface Builder 中,您可以将 UIButton 拖到导航控制器的中心,即 rightButtonItem 和 leftButtonItem 之间。
我想以编程方式执行此操作,因为我没有加载 xib。
我试过了:
[self.navigationItem addSubview:myButton] // no luck
[self.navigationController.navigationBar addSubview:myButton] //no luck
谢谢
In Interface Builder you can drag a UIButton to the centre of a Navigation Controller, between the rightButtonItem and leftButtonItem.
I would like to do this programmatically, as i am not loading a xib.
I tried:
[self.navigationItem addSubview:myButton] // no luck
[self.navigationController.navigationBar addSubview:myButton] //no luck
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为您希望与按钮一起显示的视图控制器设置
UINavigationItem
的titleView
。Set the
titleView
of theUINavigationItem
for the view controller you want the button to appear with.