iPhone - 标签栏功能
我想在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用图像创建自定义选项卡栏类将很容易,而不是创建选项卡栏功能。阅读这篇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"]])