通過AppDelegate
創建的UINavigationController
推進新的view controller
時,需要navigationItem
不斷接受新的view controller
信息,忘記上一個view controller
,並且顯示當前view controller
的title。
怎麼樣實現這個?我在viewDidLoad
中設置了當前view controller
的leftBarButtonItem
:
self.navigationItem.leftBarButtonItem = nil;
但是無效。謝謝幫忙
在新view controller用navigationItem方法因此後退按鈕
setHidesBackButton
在新view controller中用下面代碼:
- (void)viewDidLoad
{
[super viewDidLoad];
// 隱藏導航後退按鈕
[self.navigationItem setHidesBackButton:YES];
}