quit //退出
b //輸出斷點資訊
事例:6: file = '/Users/yubing/Desktop/sdimage1/sdimage/ViewController.m', line = 45, exact_match = 0, locations = 1, resolved = 1, hit count = 1
6.1: where = sdimage`-[ViewController btn:] + 42 at ViewController.m:45, address = 0x000000010807106a, resolved, hit count = 1
複製程式碼
b test //設定斷點在test函式下
bt //列印棧資訊
call//呼叫函式self.view.backgroundColor = [UIColor yellowcolor];
c //程式繼續執行。
n //單步執行不進入子函式。
s //單步執行進入子函式。
si //彙編指令。
ni //彙編指令。
image //展示各種模組資訊。
watchpoint //記憶體資料發生改變時觸發。
mem讀取0x7fbfe0d38240 0x7fbfe0d38240 + 90 //讀出記憶體中的資訊。
memory write 0x7fbfe0d38240 99 //把99寫入記憶體。
register read //暫存器讀取真機x1讀取暫存器裡邊的內容模擬器eax(能獲取引數和呼叫物件)。