-4
'NSUnknownKeyException',
reason: '[<UIApplication 0xde7b110> setValue:forUndefinedKey:]:
this class is not key value coding-compliant for the key guessText.'

我的应用程序总是崩溃,为什么?

4

1 回答 1

3

虽然发生这种情况的原因有很多,但当您在 ​​Interface Builder 中设计的某些视图引用了不存在IBOutlet的 . 在您的情况下称为guessText. 也许您有一个后来重命名或从 .h 中删除的文件?在 Interface Builder 中打开您的 NIB/故事板,查看插座,看看您是否可以找到引用guessText并相应地修复它(删除插座或IBOutlet在您的代码中创建插座)。

于 2012-08-31T17:28:45.560 回答