2012-12-20 60 views
0

LLDB debuggerself.property工程,但爲什麼不self.property.property工作。對LLDB調試方法的疑問

例如:

PO self.modelData.arrayOfChatMessages

沒有名爲arrayOfChatMessages成員。當從另一個類的函數是階梯狀的,我嘗試這樣做:

po self.anotherClass的財產(類其中存在調試器被加入的功能)它給出以下消息:

po self.anotherClassProperty 

有沒有名字叫anotherClassProperty。任何人都可以請幫助我。

謝謝。

回答

0

這是調試器的限制。要解決此問題,請使用常規消息語法:

po [[self modelData] arrayOfChatMessages] 
po [self anotherClassProperty]