如何更改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];