程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> cocoa touch-UINavigationController忽略上一個viewcontroller

cocoa touch-UINavigationController忽略上一個viewcontroller

編輯:編程綜合問答
UINavigationController忽略上一個viewcontroller

通過AppDelegate創建的UINavigationController

推進新的view controller時,需要navigationItem不斷接受新的view controller信息,忘記上一個view controller,並且顯示當前view controller的title。

怎麼樣實現這個?我在viewDidLoad中設置了當前view controllerleftBarButtonItem

self.navigationItem.leftBarButtonItem = nil;

但是無效。謝謝幫忙

最佳回答:


在新view controller用navigationItem方法因此後退按鈕

setHidesBackButton

在新view controller中用下面代碼:

- (void)viewDidLoad
{
    [super viewDidLoad];

    // 隱藏導航後退按鈕

    [self.navigationItem setHidesBackButton:YES];
}
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved