xcode 4.3に更新し、デバッガーをlldbに切り替えたため、メンバー変数を出力する要求はすべて失敗し、次のエラーメッセージが表示されます。
(lldb) print request
error: error: reference to 'id' is ambiguous
note: candidate found by name lookup is 'id'
note: candidate found by name lookup is 'id'
error: 1 errors parsing expression
「自己」は大丈夫です:
(lldb) print self
(LoginViewController *) $6 = 0x1cd54d50
また、メンバー変数を出力する他の形式も失敗します。
(lldb) print self.request
error: property 'request' not found on object of type 'LoginViewController *'; did you mean to access ivar 'request'?
error: 1 errors parsing expression
(lldb) print self->request
error: error: reference to 'id' is ambiguous
note: candidate found by name lookup is 'id'
note: candidate found by name lookup is 'id'
error: 1 errors parsing expression
それ以外はすべて正常に機能しているようです。Xcodeの可変ウィンドウは値を正しく取得できます。クリーンビルドを試し、〜/ Library / Developer / Xcode /DerivedData/を削除しました。グーグルは同じ問題の他の例を明らかにしていません。
Appleの開発フォーラムで1つのスレッドを見つけましたが、解決策はありません。
https://devforums.apple.com/message/623694
私はこれをバグID#11029004としてAppleに報告しました。