如何将两个 UIBarButtonItem 添加到 UINavigationItem?
我想要 UINavigationBar 上有两个 rightBarButtonItem。我怎样才能做到这一点?
I want two rightBarButtonItem's on my UINavigationBar. How can I accomplish this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将 UISegmentedControl 与两个按钮并将其配置为
momentary
属性设置为 YES。这是邮件应用程序中用于转到下一条/上一条消息的内容。
更新
为了分配 UISegmentedControl]1 作为右键,您必须将其包装在 UIBarButtonItem 内(示例代码取自 导航栏示例应用程序):
You can use a UISegmentedControl with two buttons and configure it with the
momentary
property set to YES.This is what is used in the Mail application to go to next/previous message.
Update
In order to assign the UISegmentedControl]1 as a right button, you have to wrap it inside a UIBarButtonItem (sample code taken from the NavBar sample application):