-1

我有一個問題,我無法解決,我相信解決方案非常簡單。顯示UINavigationController和後退按鈕

我定義我AppDelegate一個UINavigation controller並顯示navigation bar上與應用程序名稱爲標題的主要ViewController的頂部。

ViewController調用tableview連接到CoreData database在某個時刻如下:

MyView *tbl = [[MyView alloc] init]; 



tbl.delegate = self; 

(...) 

MyAppDelegate *app = (MyAppDelegate *)[[UIApplication sharedApplication] delegate];  


app.itbl = tbl; 
[app.navnav pushViewController:app.itbl animated:YES]; //Should not this one make the 

navigation bar和後退按鈕可見?

MyView是一個操縱coredata並將其放入tableview中的類。我的問題是,UINavigation酒吧沒有出現在新的ViewController,所以沒有後退按鈕。 (順便說一下,我根本不使用Navigationbar的隱藏屬性)。

任何幫助將不勝感激。

回答

相關問題