UITabBar - iPhone
有什么办法可以创建一个带有主页、搜索和登录等选项的 UITabBar 并将这些选项显示在所有页面上,包括那些没有 UITabBarItem 的页面?例如,在我的购物车视图中,我将有 UITabBar(带有主页、搜索和登录),但没有用于购物车的 UITabBarItem?
这可能吗?
提前致谢!
Is there any way how I can create a UITabBar with options such as Home, Search and Login and display these on all the pages including those without a UITabBarItem? For instance, on my Shopping Cart view I will have the UITabBar (with Home, Search and Login) but without a UITabBarItem for the Shopping Cart?
Is this possible?
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用自定义 UIButtons 模拟 UITabBar。
我在目前正在开发的应用程序中使用这种技术,因为我想要在不同视图之间切换时产生某些效果(例如淡入淡出)。
You can simulate an UITabBar using custom UIButtons.
I'm using this technique in an app I'm developing at the moment because I want certain effects (like fading) when switching between different views.
UITabBar (您应该仔细阅读文档)扩展了 UIView。
所以:
UITabBar (you should carefully read the doc) extends UIView.
So :