在UITabbar中更改字体颜色

时间:2011-07-20 18:03:39

标签: iphone uitabbar textcolor

如何更改iPhone上UITabbar的字体颜色?

在我的应用程序中,我使用的是自定义标签栏,现在我想更改其文本的颜色。

以下是我的标签栏背景的代码

UIView *v = [[UIView alloc] initWithFrame:self.view.frame];
    UIImage *i = [UIImage imageNamed:@"1.png"];
    UIColor *c = [[UIColor alloc] initWithPatternImage:i];
    v.backgroundColor = c;
    [c release];
    [[self.tabBarController tabBar] insertSubview:v atIndex:0];
    [v release];

0 个答案:

没有答案