美文网首页
纯代码开始项目 不用main.stroyboard

纯代码开始项目 不用main.stroyboard

作者: 子非鱼7868 | 来源:发表于2019-04-22 23:44 被阅读0次

    挺久没有写ios的代码,今天想写个demo练练手,一开始我就纯代码的写了window 把main interface的main删除了 结果跑不起啦!!!这里记录一下

    删除main interface的main

    Snip20190417_2.png

    删除main.storyboard

    Snip20190417_3.png

    AppDelegate 添加代码

    Snip20190417_4.png
           window = UIWindow(frame: UIScreen.main.bounds)
           window?.rootViewController = ViewController()
           window?.backgroundColor = UIColor.white
           window?.makeKeyAndVisible()
    

    相关文章

      网友评论

          本文标题:纯代码开始项目 不用main.stroyboard

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