ios - Xcode Terminate称为抛出异常

时间:2012-08-31 17:15:27

标签: ios xcode ios5

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

我的应用一直在崩溃,为什么?

1 个答案:

答案 0 :(得分:3)

虽然这可能由于很多原因而发生,但是如果您在Interface Builder中设计了一些引用不存在的IBOutlet的视图,则会出现此错误,在您的情况下,一个名为{{1}的视图}}。也许你有一个你随后重命名或从你的.h删除?在Interface Builder中打开你的NIB /故事板,查看出口,看看你是否能找到引用guessText的出口并相应地修复(删除出口或在你的guessText中创建IBOutlet码)。