美文网首页
swift初学之项目启动

swift初学之项目启动

作者: 前尘梦醒 | 来源:发表于2019-05-30 13:45 被阅读0次

     varwindow:UIWindow?

        funcapplication(_application:UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey:Any]?) ->Bool{

            window = UIWindow(frame: UIScreen.main.bounds)

            letvc =ViewController()

            letnavVC =UINavigationController(rootViewController: vc)

            window?.rootViewController = navVC

            window?.makeKeyAndVisible()

            return true

        }

    相关文章

      网友评论

          本文标题:swift初学之项目启动

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