2012-01-27 17 views

答えて

1

はあなたがそれを把握することができないものであると仮定すると、あなたは画像のように何かをしたい、下のタブバーに入り、各ビューコントローラで

tabBarController.tabBarItem.title = @"Your title" 
0

このコードをinitメソッドまたはviewDidLoadメソッドに挿入する必要があります。

UITabBarItem * tabtitle = [[UITabBarItem alloc] initWithTitle: @" YOUR TITLE " 
                 image: nil //or your image 
                  tag: 0]; 

[self setTabBarItem: tabtitle]; 
//[tabtitle release]; //release if not using ARC 
関連する問題