我的应用程序的故事板使用 UIViewController 转到应用程序的不同视图。但是,我想尝试第三方库,即 EGOPhotoViewer,而不是重新发明轮子。但是如何从情节提要中将 UINavigationController 添加到 UIViewController ?这是该库用于初始化的代码。
EGOPhotoViewController *photoController = [[EGOPhotoViewController alloc] initWithPhotoSource:source];
[self.navigationController pushViewController:photoController animated:YES]
当我将它添加为视图控制器时,它只对我有用:
[self presentModalViewController:photoController animated:YES];
但是该库在导航控制器中效果最好,因为我的测试方法中缺少标题栏和导航按钮。