iOS-删除storyboard

iOS-删除storyboard_第1张图片
截图 (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)