Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 在没有 xib 的情况下在 Cocoa Touch 中以编程方式加载视图控制器和视图层次结构
我知道它可以通过目标摘要中的 set MainWindow 加载。它显示为
是否可以以编程方式加载 MainWindow?
是的,您可以.. 以下是实用的创建方法,
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; [self.window makeKeyAndVisible];