将 UITabBar 移动到 UITabBarController 的顶部?
我刚刚完成了一个应用程序的设计,该应用程序使用顶部栏在三个 UIViewController 之间切换。我的第一个想法是使用 UITabBarController,因为它的工作方式非常相似。
然而,tabBar 位于底部,而在我的 PSD 中,它位于顶部。无论如何我可以改变它吗?我在库中看到我可以拖动 UITabBar,但我不知道如何让它从那里更改页面。
请帮忙! 库尔顿
I just finished designing a application that uses a top bar that toggles between three UIViewControllers. My first thought was to use a UITabBarController, since it works very simular.
However, the tabBar is at the bottom and in my PSD, it's at the top. Is there anyway I can change it? I see in the library I can drag in a UITabBar, but I don't know how to get it to change pages from there.
Please help!
Coulton
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
希望下面的代码
对我有帮助
Hope the below code helps
Worked fine for me
我认为这是可以做到的,但你应该知道
因此,在您的 UI 中(我想您在 Interface Builder 中定义了它),实例化一个
UITabBar
对象(通过在 IB 库中选择它并将其拖动到 IB 中的视图)。选择默认位置,并定义此选项卡栏自动调整大小的方式(使用信息窗口的大小窗格)。然后,向 UITabBar 类型的视图控制器添加一个插座,最后将选项卡栏对象连接到选项卡栏插座。完成此操作后,您可以在视图控制器的 viewDidLoad 方法中自定义您想要的选项卡栏的任何属性。
I think it can be done, but you should be aware of this:
So, in your UI (I suppose you defined it in Interface Builder), instantiate a
UITabBar
object (by choosing it in the IB library and dragging it to your view in IB). Choose the default position and also define the way that this tab bar autoresizes (using the size pane of the info window). Then, add an outlet to your view controller of type UITabBar, and, finally, connect the tab bar object to the tab bar outlet.Once you have done this, in your view controller's
viewDidLoad
method you can customize any property of the tab bar that you want to.