我已经创建了一个 ViewController(没有 nib 文件),那么如何在应用程序委托(delegate)中加载这个 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”类的新 View Controller ?
感谢您的帮助!
注意:顺便说一句,我确实看到这段代码确实调用了我的初始化方法,并且我的 customViewController 中的 ViewDidLoad 方法正在被调用,但是屏幕仍然是黑色的......
Best Answer-推荐答案 strong>
您的属性设置似乎不正确。
检查这一行:
viewController = [[MyCustomViewController alloc] init...]; // I use a custom init method
self.window.rootViewController = self.viewController;
检查 self.viewController 是否正常,没有什么能阻止你这样做:
self.window.rootViewController = viewController;
关于objective-c - 如何呈现(无 Nib )ViewController,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/12043489/
|