美文网首页iOS微知识点
删除storyboard文件

删除storyboard文件

作者: Corbin___ | 来源:发表于2018-02-27 16:39 被阅读0次

1.删除storyboard文件

2. image
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    ViewController *vc = [[ViewController alloc]init];
    [self.window setRootViewController:vc];
    self.window.backgroundColor = [UIColor purpleColor];
    [self.window makeKeyAndVisible];
    
    return YES;
}

相关文章

网友评论

    本文标题:删除storyboard文件

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