UIButtons 作为标签栏?
我正在尝试做一些类似于这个应用程序(底部选项卡)的事情。 http://itunes.apple.com/gb/app/westfield -london/id409824812?mt=8
基本上它有 5 个 UIButtons,其中一些像UITabBar
。 对于某些视图,UIButtons
(选项卡)将保留在底部,而对于其他视图,则不会。 单击“主页”按钮(右上角)后,它将转到一个视图,其中包含(分页图像)、顶部的导航栏和底部的 UIButtons(选项卡)。
我想知道如何创建这样的应用程序。
如果您需要有关该应用程序的更多详细信息,我将很乐意提供。
I am trying to do something similar to this app (Bottom Tab).
http://itunes.apple.com/gb/app/westfield-london/id409824812?mt=8
Basically it has 5 UIButtons
and some of them work like a UITabBar
.
For some views the UIButtons
(Tab) will stay at the bottom and for others it will not.
Once you click the Home button (top right) it goes to a View with an (Paging Images), NavigationBar at the top and UIButtons
(Tab) at the bottom.
I want to know how it is possible to create such an App.
If you need any more details about the app, I will be happy to give.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该应用程序可能使用 UINavigationController 来管理视图周围按钮的导航。一旦您点击其中一个,应用程序实际上正在使用
UITabBarController
,为视图重复使用相同的图像,给人一种相同按钮在底部移动的错觉。当然有可能。他们做到了! :)
That app is probably using a
UINavigationController
to manage navigation with the buttons all around the view. Once you tab on one of those, the app is actually using aUITabBarController
, reusing the same images for the View, giving the illusion that the same buttons moved at the bottom.Of course it's possible. They've done it! :)