我已经创建了一个 ViewController(没有 nib 文件),那么如何在应用程序委托中加载这个 viewController?我当前的代码是:
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
// Override point for customization after application launch.
viewController = [[MyCustomViewController alloc] init...]; // I use a custom init method
self.window.rootViewController = self.viewController;
[self.window makeKeyAndVisible];
return YES;
以及如何使用 presentModalViewController 方法来显示相同“CustomViewController”类的新视图控制器?
谢谢您的帮助!
注意:顺便说一句,我确实看到这段代码确实调用了我的初始化方法,并且我的 customViewController 中的 ViewDidLoad 方法正在被调用,但是屏幕仍然是黑色的......