我有一個奇怪的問題與我的segue,這是導致我的應用程序崩潰。在ListViewController.m應用崩潰在33行:class不是關鍵值編碼兼容關鍵textView
dvc.menu = [self.blogPosts objectAtIndex:[[self.tableView indexPathForSelectedRow] row]];
,出現以下錯誤:
menu[15782:c07] *** Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<DetailViewController 0x7576d50> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key textView.'*
我一直在研究了很長一段時間,似乎很多遇到同樣的問題,雖然他們的解決方案似乎不適合我。對於我來說,這是一個全新的世界,我真的很想知道,我究竟做錯了什麼。
我已經上傳了XCode項目供您查看,如果有任何幫助。 Download project files here
在此先感謝!
[此類不是密鑰的關鍵值編碼兼容](http://stackoverflow.com/questions/3088059/this-class-is-not-key-value-coding-compliant-for -the-key) – CodaFi
Hi CodaFi!感謝您的代碼,但是,我已經看過特定的線程。 – FooBar