美文网首页
iOS-删除storyboard

iOS-删除storyboard

作者: Alan龙马 | 来源:发表于2018-05-08 17:04 被阅读7次
截图 (4).png
OC
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    self.window.backgroundColor = [UIColor whiteColor];
    [self.window makeKeyAndVisible];//设置主窗口并显示出来
   
    self.window.rootViewController = [ViewController new];
    
    return YES;
}

swift
    func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
        
        self.window = UIWindow(frame: UIScreen.main.bounds)
        self.window?.backgroundColor = UIColor.white
        self.window?.makeKeyAndVisible()

        self.window?.rootViewController = ViewController()
        return true
    }

相关文章

网友评论

      本文标题:iOS-删除storyboard

      本文链接:https://www.haomeiwen.com/subject/ocswrftx.html