在 Xcode 中自定义 UITabBar 的颜色
您好,您可以让我知道如何更改 Xcode 中 tababar 的默认颜色吗?我已经尝试过了:
(void)viewDidLoad { [超级viewDidLoad]; UIImageView *img = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"UITabBar.png"]]; img.frame = CGRectOffset(img.frame, 0, 1); [tabBar1 insertSubview:img atIndex:0]; [img发布];
但它对我不起作用,所以你能详细告诉我如何更改 colo
Hi Could you please let me know how to change the default colour of a tababar in Xcode i hav already tried this :
(void)viewDidLoad {
[super viewDidLoad];
UIImageView *img = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"UITabBar.png"]];
img.frame = CGRectOffset(img.frame, 0, 1);
[tabBar1 insertSubview:img atIndex:0];
[img release];but it doesnt work for me so can you please tel me in detail how can i change the colo
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我知道,这是一个旧线程,但仍然适合所有寻找答案的人。
自定义 UITabBar 外观的方法之一是使用类别覆盖
drawRect:
方法。选择在 Xcode 项目中创建新文件,选择 Objective-C 类别,然后在 Category On 文本字段中键入 UITabBar。接下来,在类别 .h 文件中声明drawRect:
方法,并在类别 .m 文件中实现它,如下所示:这将更改应用中所有 UITabBar 实例的外观。
希望这有帮助。
I know, this is an old thread, but nonetheless for all of you looking for an answer.
One of the ways to customize the look of UITabBar is to override
drawRect:
method with use of categories. Choose to create new file in your Xcode project, choose Objective-C category, then type UITabBar for Category On textfield. Next, declaredrawRect:
method in your category .h file and implement it in category .m file like this:This will change the looks of all UITabBar instances in your app.
Hope this helps.