0
我試圖使用SWRevealViewController實現滑動菜單。這裏是我的故事板: iOS:SWRevealViewController不顯示導航欄
這裏是如何我從主的viewController加載視圖控制器:
-(void)viewDidAppear:(BOOL)animated
{
[super viewDidAppear:YES];
UIStoryboard *stryBoard=[UIStoryboard storyboardWithName:@"Main" bundle:nil];
[stryBoard instantiateViewControllerWithIdentifier:@"NewViewController"];
NewViewController *vc = [stryBoard instantiateViewControllerWithIdentifier:@"NewViewController"];
[self presentViewController:vc animated:YES completion:nil];
}
任何你知道爲什麼導航欄是不是我的設備上顯示?或者我在做什麼導航欄不顯示錯誤?
我真的很感謝你的幫助。