iPhone - 标签栏功能

发布于 2024-10-18 04:59:19 字数 315 浏览 6 评论 0原文

我想在 UITabbar 视图中显示彩色图像(而不是灰色图像)。但这是不可能的。 同样,每个选项卡,我们都可以关联一个视图控制器。视图控制器可以是视图或导航视图或表视图。 (操作起来很简单)

所以,我决定在视图底部放置 3 个不同的按钮。单击每个按钮时,我想显示不同的视图控制器(在 3 个按钮上方的空间中)。我不想使用类似“

[self.view addSubview:viewController.view];

你想让我创建 3 个不同的视图控制器或视图或其他东西吗”之类的东西来实现选项卡栏的功能。

提前致谢。

I want to have colored images (not gray ones) in UITabbar view. But its not possible.
Also each tab, we can associate one view controller. The view controller can be a view or a navigation view or a table view. (Its simple to handle)

So, I decided to place 3 different buttons at the bottom of the view. On click of each button, I want to show different view controllers (in the space above 3 buttons). I don't want to use something like

[self.view addSubview:viewController.view];

Do you want me to create 3 different view-controllers or views or something else and achieve the functionality of tab bar.

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

幽蝶幻影 2024-10-25 04:59:19

使用图像创建自定义选项卡栏类将很容易,而不是创建选项卡栏功能。阅读这篇SO Post

在此您使用

([[UIColor alloc] initWithPatternImage:[UIImage imageNamed:@"defaultad.png"]])

Instead of creating tab bar functionality it will easy to handle creating custom tab bar class with Images. read this SO Post

In this you set the image for background color using

([[UIColor alloc] initWithPatternImage:[UIImage imageNamed:@"defaultad.png"]])

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