2

我有隱藏默認導航後退按鈕的代碼。現在我想在那個地方添加新的按鈕。當按下按鈕,然後打開主視圖或項目的第一個屏幕。我該怎麼做?如何在導航欄中添加後退按鈕?

+0

如果妳認爲它是類似於任何問題,然後告訴我怎麼了?我認爲這是不同的,因爲我檢查了所有,然後我問。因爲他們不適合我。 – ram

+0

是yar應用程序基於導航的應用程序? – makboney

+0

是的我的應用程序是基於導航的應用程序。 – ram

回答

3

試試這個

UIBarButtonItem *customItem = [[UIBarButtonItem alloc] initWithImage:bttnImage style:UIBarButtonItemStylePlain target:self action:@selector(Back:)]; 
[self.navigationController setHidesBackButton:YES]; 
[self.navigationItem setLeftBarButtonItem: customItem]; 
[customItem release]; 

希望它會爲你工作...

+0

感謝您的支持。 – ram

+1

UIBarButtonItem – makboney

+0

是爲你工作嗎? – makboney

相關問題