我正在使用iOS 5與故事板。我有一個根Navigation Controller
並附加到一個Tab Bar Controller
與兩個Tab Bar
項目。我試圖手動或以編程方式在頂部導航欄上的Tab Bar
項目之一中設置標題。在iOS中設置標題
以下是我在ViewDidLoad
中嘗試的一些有趣的事情,但標題仍未顯示出來。
self.navigationController.navigationItem.title = @"Item List";
self.navigationItem.title = @"Item List";
self.tabBarItem.title = @"Item List";
[self.tabBarItem setTitle: @"Item List"];
[self.navigationItem setTitle:@"Item List"];
[[self.parentViewController.tabBarController.tabBar.items objectAtIndex:0] setTitle: @"Item List"];
如何在iOS 5中設置標題?
嘗試設置'self.title'。 –
也是一個很好的閱讀:我如何接受SO的答案? http://stackoverflow.com/faq#howtoask –