在我的应用程序中,我动态加载一组图像,当用户点击图像时,它会打开一个新的 ViewController (MediaPreview),它会打开图像的大预览。
我创建 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];
这将创建一个看起来像这样的 ViewController:
但是,底部导航栏似乎不见了,这在我的故事板中有概述:
如何确保底部导航栏按钮出现在我的视图中?