0
我正在使用一個非常棒的框架MMDrawerController
。我只是試圖很好地構建我的代碼。我只有左側導航。我有它設置現在這個樣子權:我應該如何設置這個「抽屜」視圖應用程序?
UIViewController *leftSideDrawerViewController = [[MenuNavigationViewController alloc] initWithStyle:UITableViewStylePlain];
// ****************************** just my initial login viewcontroller
UIViewController *centerViewController = [[***LoginViewController*** alloc] init];// The Question I have is right here
// ******************************
UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:centerViewController];
self.drawerController = [[MMDrawerController alloc]
initWithCenterViewController:navigationController
leftDrawerViewController:leftSideDrawerViewController
rightDrawerViewController:nil];
self.window setRootViewController:self.drawerController];
應該基本上我只是讓這將永遠不會改變我的左視圖控制器我MenuViewController
。然後我讓我的中心視圖控制器爲我的LoginViewController
,這個視圖顯然需要最終改變。我在左側導航欄中選擇了大約5個視圖控制器,然後從左側導航欄訪問的視圖控制器中,我將推送視圖控制器。我如何設置?在我看來,我需要多個導航控制器。一個用於左側導航欄中的每個視圖控制器。
如何設置多個導航控制器,以及如何在中心視圖上的這些導航控制器之間切換?
感謝您的幫助,只是試圖設置這個應用程序!