2011-04-09 56 views
0

我試圖更新tabBarItem不止一次,但我不能得到它的工作。更新tabBarItem不止一次(three20)

我用theese方法:

self.tabBarItem = [[[UITabBarItem alloc] initWithTitle:@"New title" image:image tag:0] autorelease]; 

和:

self.tabBarItem.title = @"New title"; 
self.tabBarItem.image = image; 

而且他們的工作,但只有一次。所以現在我被卡住了。

任何幫助表示讚賞。

感謝

回答

0

同時爲titleimage性質筆記文檔:

你應該加入該項目以一個酒吧前,設置該屬性。

這可能是明智的,聽從這個建議。如果您想更改屬性,只需使用新設置創建一個新的標籤欄項目,並將其分配給self.tabBarItem

+0

是的,那是我第一次的猜測,但它仍然沒有更新一次以上。這是我使用的代碼:self.tabBarItem = [[[[UITabBarItem alloc] initWithTitle:@「New title」image:image tag:0] autorelease]; – 2011-04-10 10:21:51