我的数据模型中发生了一些事情,我需要展示一个通过情节提要实例化的模态视图控制器。
我怎样才能做到这一点?我需要从一个 NSObject 呈现一个模态 VC,显然 presentViewController 是一个 UIViewController 方法。
最好的方法是什么?
UIStoryboard *mainStoryboard = [(AppDelegate *) [[UIApplication sharedApplication] delegate] storyboard];
NewMessageListenPopupVC *popupVC = [mainStoryboard instantiateViewControllerWithIdentifier:@"NewMessageListenPopupVC"];
[self presentViewController:popupVC animated:YES completion:nil];
编辑:
我可能最终会使用的代码:
UIStoryboard *mainStoryboard = [(AppDelegate *) [[UIApplication sharedApplication] delegate] storyboard];
NewMessageListenPopupVC *popupVC = [mainStoryboard instantiateViewControllerWithIdentifier:@"NewMessageListenPopupVC"];
UIViewController *rootVC = [[(AppDelegate *) [[UIApplication sharedApplication] delegate] window] rootViewController];
[rootVC presentViewController: popupVC animated:YES completion:nil];