0

嗨,我一直在试图弄清楚如何更改我的 UITabBar 的文本。我正在尝试这个,但它不起作用,我该怎么办?

- (id)init 
{
    UITabBarItem* theItem = [[UITabBarItem alloc] initWithTitle:[UIFont fontWithName:@"HelveticaNeue" size:nil] image:nil tag:0];
    self.tabBarItem = theItem;
    return self;  
}
4

1 回答 1

2

您正在将标题设置为字体的实例而不是字符串。

UITabBarItem* theItem = [[UITabBarItem alloc] initWithTitle:@"Some Title" image:nil tag:0];
于 2012-06-17T06:08:12.460 回答