打印對象
- print念秧、p:打印
- po:打印對象
(lldb) po str
233
(lldb) p str
(__NSCFConstantString *) $1 = 0x0000000100001078 @"233"
(lldb)
讀取內(nèi)存
- memory read/數(shù)量格式字節(jié)數(shù) 內(nèi)存地址
- x/數(shù)量格式字節(jié)數(shù) 內(nèi)存地址
- x/3xw 0x10010
1.格式:
x是16進制驾锰,f是浮點忿项,d是10進制
2.字節(jié)大小:
b:byte 1字節(jié)脏榆,h:half word 2字節(jié)
w:word 4字節(jié)常潮,g:giant word 8字節(jié)
修改內(nèi)存中的值
- memory write 內(nèi)存地址 數(shù)值
- memory write 0x0000010 10