如何将 UIBarButtonItem 与自定义外观居中?
好吧,我的 iPhone 应用程序的一个视图中有一个 TableView。我正在使用 UINavigationController,因此我使用它在表格底部创建了 UIToolBar。效果很好。但是,我希望工具栏中的项目类似于 Facebook 应用程序的方式:
我不仅希望按钮(我只有 2 个)与它们相似。 (它们在触摸另一个按钮时连接),但我真的想向用户展示他们所在的“选项卡”。在上图中,用户可以明显看出它们位于墙上。当他们触摸“信息”时,它会变暗,用户知道他们在哪里。有谁知道他们是如何做到的,这样我的应用程序也可以有清晰导航?
Alright, so I have a TableView in one of my Views in my iPhone app. I'm using a UINavigationController, so using that I created the UIToolBar at the bottom of the table. Works great. However, I want the items in the toolbar to resemble how the Facebook app has them:
Not only would I like the Buttons (I will have only 2) to resemble those. (They connect when touching another button), but I really want to show the user what "Tab" they are on. In the image above, it is obvious to the user they are on the Wall. When they touch "Info", it becomes darkened and the user knows where they are. Does anyone know how they did it so my app may also have clear navigation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
图片上的内容是带有
UISegmentedControlStyleBar
样式的标准UISegmentControl
- 您可以使用它。What you have on a picture is standard
UISegmentControl
withUISegmentedControlStyleBar
style - you can use it.只需像他们一样使用
UISegmentedControl
Just use a
UISegmentedControl
like they did