2013-11-27 25 views
0

我最近開始使用的應用程序與其SIGABRT消息一起崩潰。在調試器頂部的一般消息稱:已通過獲取SIGABRT更新至Xcode5模擬器錯誤

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

...在底部,它說:

libc++abi.dylib: terminating with uncaught exception of type NSException 
(lldb) 

讓我知道,如果「第一擲調用棧」的信息是必要的解決這個問題。

+0

你是否認爲()有parentEmail屬性? –

+0

相關:http://stackoverflow.com/questions/3088059/this-class-is-not-key-value-coding-compliant-for-the-key –

回答

0

檢查並確保您之前沒有按鈕/文本字段/標籤以前與操作鏈接,然後刪除該項目。鏈接仍然存在。檢查並確保所有鏈接與現有項目相匹配。

0

通常這來自xib中的插座鏈接,沒有相應的類變量。 您是否從類中移除變量而不移除xib內部的鏈接?

相關問題