Objective-Cプログラムをデバッグしようとしていますが、unsigned long long
変数を16進数で出力する必要があります。lldb
デバッガーを使用しています。
short
16進数として印刷するには、次を使用できます。
(lldb) type format add --format hex short
(lldb) print bit
(short) $11 = 0x0000
しかし、私はそれを動作させることはできませんunsigned long long
。
// failed attempts:
(lldb) type format add --format hex (unsigned long long)
(lldb) type format add --format hex unsigned long long
(lldb) type format add --format hex unsigned decimal
(lldb) type format add --format hex long long
(lldb) type format add --format hex long
(lldb) type format add --format hex int
違いがあれば、シミュレーターでiOSアプリを実行しています。