美文网首页
[常用代码]AppDelegate设置主界面

[常用代码]AppDelegate设置主界面

作者: zhulang424 | 来源:发表于2017-08-28 23:53 被阅读44次
    - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
        // Override point for customization after application launch.
        
        ViewController *mainVC = [[ViewController alloc] init];
        
        self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
        self.window.rootViewController = mainVC;
        [self.window makeKeyAndVisible];
        
        return YES;
    }
    

    相关文章

      网友评论

          本文标题:[常用代码]AppDelegate设置主界面

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