UITabBar中的自定义颜色

编程入门 行业动态 更新时间:2024-10-10 05:19:06
本文介绍了UITabBar中的自定义颜色的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

是否可以在UITabBar中使用自定义颜色和背景图像?我意识到Apple希望每个人都使用相同的蓝色和灰色标签栏,但有没有办法自定义它?

Is it possible to use custom colors and background images in a UITabBar? I realize that Apple would like everyone to use the same blue and gray tab bars, but is there any way to customize this?

第二,即使我是创建自己的像TabBar一样的视图控制器以及自定义图像会违反 Apple的人机界面指南吗?

Second, even I were to create my own TabBar-like view controller, along with custom images, would this violate Apple's Human Interface Guidelines?

推荐答案

我在 Silent Mac Design 中找到了答案。

我用这种方式实现:

首先制作UITabBarContoller的子类

First make a subclass of UITabBarContoller

// CustomUITabBarController.h #import <UIKit/UIKit.h> @interface CustomUITabBarController: UITabBarController { IBOutlet UITabBar *tabBar1; } @property(nonatomic, retain) UITabBar *tabBar1; @end

// CustomUITabBarController.m #import "CustomUITabBarController.h" @implementation CustomUITabBarController @synthesize tabBar1; - (void)viewDidLoad { [super viewDidLoad]; CGRect frame = CGRectMake(0.0, 0, self.view.bounds.size.width, 48); UIView *v = [[UIView alloc] initWithFrame:frame]; [v setBackgroundColor:[[UIColor alloc] initWithRed:1.0 green:0.0 blue:0.0 alpha:0.1]]; [tabBar1 insertSubview:v atIndex:0]; [v release]; } @end

并在您的Nib文件中替换带有CustomUITabBarController的TabBar控制器的类。

And in your Nib file replace the class of your TabBar Controller with CustomUITabBarController.

更多推荐

UITabBar中的自定义颜色

本文发布于:2023-07-19 13:47:29,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1157112.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:自定义   颜色   UITabBar

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!