我有一個問題,我無法解決,我相信解決方案非常簡單。顯示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
的隱藏屬性)。
任何幫助將不勝感激。