我必须进行一级扩展NSObject
和第二级视图控制器。
我的问题是,我想转到NSObject
加view controller
加载xib
的{{1}}文件。
我使用了传统方法,迄今为止没有成功 假设NSObject是MagentoLogin.m并且我想去viewController,我该如何实现呢?
答案 0 :(得分:1)
MyAppDelegate *appDelegate = (MyAppDelegate *)[[UIApplication sharedApplication] delegate];
[appDelegate.navigationController presentViewController:myNewViewController animated:YES completion:nil];
试试这个希望它会有所帮助