在我的應用程序中,我動態加載一組圖像,當用戶點擊圖像時,它會打開一個新的ViewController(MediaPreview),打開圖像的大型預覽。Bottom Bar沒有出現在presentViewController中的項目
我創建MediaPreview控制器如下:
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
mediaPreviewVC = (MediaPreviewViewController *)[storyboard instantiateViewControllerWithIdentifier:@"MediaPreviewViewController"];
mediaPreviewVC.selectedImageURL = [NSString stringWithFormat:@"%@",gestureRecognizer.view.tag];
navigationController = [[UINavigationController alloc] initWithRootViewController:mediaPreviewVC];
[self presentViewController:navigationController animated:YES completion:nil];
這將創建一個視圖控制器看起來像這樣:
然而,底部導航欄似乎缺少,這是在我的故事板中概述:
如何確保底部導航欄按鈕出現在我的視圖中?
'MediaPreviewVC'的'Hide Bottom Bar on Push'狀態是什麼? – Xyand 2014-09-01 20:35:42
隱藏底部推杆被取消選中 – scientiffic 2014-09-01 22:45:18