1

Xcode 4.6 final にアップグレードして以来、LLDB でこれをよく見かけます。

(lldb) po [0x12eaf7a0 description]
Error [IRForTarget]: Call to a symbol-only function 'objc_msgSend' that is not present in the target
error: warning: receiver type 'int' is not 'id' or interface pointer, consider casting it to 'id'
error: The expression could not be prepared to run in the target

0x12eaf7a0左ペインに式として追加することで、それが有効なオブジェクトであることを確認できます。「説明の印刷」コンテキストメニューを使用して、説明を正常に表示することもできます。

アイデアはありますか (GDB に戻すことを除く)。

4

1 に答える 1

0

私はあなたがあなたのアドレスをidにキャストする必要があると思います、例えば

(lldb) po [(id)0x12eaf7a0 description]
于 2013-01-29T22:34:55.573 に答える