iPhone - 分离的 UI 导航栏项目
Is there an existing API for this kind of separated controls for the UINavigationbar seen in Mail.app? More specifically this up and down arrows shown in the picture.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请注意,您可以使用任何所需的自定义视图创建
UIBarButtonItem
。因此,您也可以使用 UISegmentedControl 创建它 - 它可能在您的示例中使用。工作流程应该类似于:momentary
属性设置为 yes),具有 2 个段的 UISegmentedControlsetImage:forSegmentAtIndex:
方法)。然后UIBarButtonItem
(使用initWithCustomView:
方法)。Note that you can create
UIBarButtonItem
with any custom view you want. So you can create it with UISegmentedControl as well - it is what's likely used in your example. Workflow should be something like:momentary
property set to yes) UISegmentedControl with 2 segmentssetImage:forSegmentAtIndex:
method). ThenUIBarButtonItem
initialized with this UISegmentedControl as a custom view (usinginitWithCustomView:
method).