0

运行项目时出现此错误:

Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<DetailViewController 0x6a38b60> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key detailDescriptionLabel.'

但问题是我的 ViewController 中没有任何 detailDescriptionLabel 插座,我的 XIB 中也没有。我只有一个 XIB,我在 XIB 中添加了其他东西,在代码中。有没有办法找到这个错误在哪里或者我需要删除什么链接?我正在尝试调试我的项目,但我找不到这个错误来自哪里......

我正在使用 XCODE 4.4

这是我的项目:链接

谢谢

4

2 回答 2

0

You hooked up something in the wrong way in your XIB or storyboard. Go to your storyboard/XIB and in the Document Outline right click on the view controller; you should be able to see the details of it with all the connections. Probably, you'll see the bad connection with the warning sign, so just remove it and redo it the right way.

于 2013-01-29T21:42:11.437 回答
0

我有同样的问题。检查您是否没有删除 DetailViewController 中包含的默认标签,它的名称是“detailDescriptionLabel”。删除它,它应该可以工作。

于 2014-03-26T13:03:20.603 回答