我刚开始使用 Xcode 编程,当我在没有任何额外代码、方法、属性或类的情况下运行我的应用程序时遇到了我的第一个问题。我从模板 SINGLE VIEW 开始,将 .xib 更改为 MainWindow,并添加了一个基本上称为 App Delegate 的对象。我从 MainWindow.xib 中删除了单个视图对象,并将其替换为 UIWindow。
我收到以下经典的 THREAD 1 SIGABRT 错误:
App[4178:c07] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: '-[UIViewController _loadViewFromNibNamed:bundle:] loaded the "ViewController" nib but the view outlet was not set.'
*** First throw call stack:
(0x14f8022 0xef8cd6 0x14a0a48 0x14a09b9 0x1222dd 0x122779 0x12299b 0x81401 0x81670 0x81836 0x8872a 0x1ff5 0x59386 0x5a274 0x69183 0x69c38 0x5d634 0x13e2ef5 0x14cc195 0x1430ff2 0x142f8da 0x142ed84 0x142ec9b 0x59c65 0x5b626 0x1d2d 0x1c95 0x1)
terminate called throwing an exception(lldb)
我已经审查了现有的帖子,但我无法更明智地处理它。