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 に答える