即使我是Swift的初学者,也应该很简单,但我不知道为什么。我并不热衷于使用Storyboard,因此我决定使用Interface Builder。将几个元素添加到我的视图控制器后,当我运行我的应用程序时它们不会显示。以下是我的代码:
Subject
我已将window = UIWindow.init(frame: UIScreen.main.bounds)
let home = HomeViewController()
window!.rootViewController = home
window!.makeKeyAndVisible()
设置为HomeViewController
答案 0 :(得分:0)
问题在于这一行:
let home = HomeViewController()
您应该将其更改为
let home = HomeViewController(nibName: "Whatever the name of your xib file is", bundle: nil)