自定义导航控制器的后退按钮
我想在导航栏的左侧有两个按钮,一个是常规后退按钮,另一个是 UIBarButtonItem。但是我只能用它来替换默认的后退按钮。我在互联网上尝试了许多代码示例,但无法正常工作。请帮忙
I want to have two buttons on the left side of the navigation bar, one is the regular back button and the other one is a UIBarButtonItem. However I could only get it to replace the default back button. I've tried many code samples on the internet but couldn't get any to work. please help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
不要这样做。它违反了 Apple 提出的 UI 准则。 请参阅 iPhone HIG 图 6-6 之前的段落。
Don't do this. It breaks the UI guidelines put forth by Apple. See the paragraph right before figure 6-6 of the iPhone HIG.
据我所知,(目前)不可能在
UINavigationBar
的两侧有两个UIBarButtonItems
。As far as I'm aware it's not (currently) possible to have two
UIBarButtonItems
on either side of aUINavigationBar
.为此,您必须将 UIToolBar 用于导航控制器上的多个按钮
For this you have to use the UIToolBar for multiple buttons on navigation controller
是的,你可以通过以下方式做到这一点:
Yes you can do this by-