在 Xcode 中自定义 UITabBar 的颜色

发布于 2024-10-05 08:28:23 字数 339 浏览 2 评论 0原文

您好,您可以让我知道如何更改 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 技术交流群。

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

发布评论

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

评论(1

浮云落日 2024-10-12 08:28:23

我知道,这是一个旧线程,但仍然适合所有寻找答案的人。

自定义 UITabBar 外观的方法之一是使用类别覆盖 drawRect: 方法。选择在 Xcode 项目中创建新文件,选择 Objective-C 类别,然后在 Category On 文本字段中键入 UITabBar。接下来,在类别 .h 文件中声明 drawRect: 方法,并在类别 .m 文件中实现它,如下所示:

- (void)drawRect:(CGRect)rect {
    UIImage *img  = [UIImage imageNamed: @"tabbarBackground"];
    [img drawInRect:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)];
}

这将更改应用中所有 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, declare drawRect: method in your category .h file and implement it in category .m file like this:

- (void)drawRect:(CGRect)rect {
    UIImage *img  = [UIImage imageNamed: @"tabbarBackground"];
    [img drawInRect:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)];
}

This will change the looks of all UITabBar instances in your app.

Hope this helps.

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