如何在NSObject类和ViewController之间切换

时间:2013-05-13 08:12:10

标签: iphone ios nsobject

我必须进行一级扩展NSObject和第二级视图控制器。

我的问题是,我想转到NSObjectview controller加载xib的{​​{1}}文件。

我使用了传统方法,迄今为止没有成功 假设NSObject是MagentoLogin.m并且我想去viewController,我该如何实现呢?

1 个答案:

答案 0 :(得分:1)

MyAppDelegate *appDelegate = (MyAppDelegate *)[[UIApplication sharedApplication] delegate];
[appDelegate.navigationController presentViewController:myNewViewController animated:YES completion:nil];

试试这个希望它会有所帮助