UITabBar - iPhone

发布于 2024-09-30 09:38:43 字数 170 浏览 0 评论 0原文

有什么办法可以创建一个带有主页、搜索和登录等选项的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

谷夏 2024-10-07 09:38:43

您可以使用自定义 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.

画尸师 2024-10-07 09:38:43

UITabBar (您应该仔细阅读文档)扩展了 UIView。

所以:

  • 你可以把它放在任何你想要的地方(addSubview 方法)
  • 您可以在运行时更改项目

-(void)setItems:(NSArray *)项目动画:(BOOL)动画

UITabBar (you should carefully read the doc) extends UIView.

So :

  • You can put it wherever you want (addSubview method)
  • You can change items in run time with

-(void)setItems:(NSArray *)items animated:(BOOL)animated

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文