IOS調試lldb常用命令

來源:互聯網
上載者:User

標籤:

LLDB在xcode4.3或者之後的版本裡面是預設的調試器。假如你正在使用老一點版本的xcode的話,你又GDB調試器。他們有一些基本的相同的命 令,因此假如你的xcode使用的是“(gdb)”提示,而不是“(lldb)”提示的話,你也能夠更隨一起做,而沒有問題。

“po”命令是“print object”(列印對象)的簡寫。“$eax”是cup的一個寄存器。在一個異常的情況下,這個寄存器將會包含一個異常對象的指標。注意:$eax只會在模擬器裡面工作,假如你在裝置上調試,你將需要使用”$r0″寄存器。

例如,假如你輸入:

(lldb) po [$eax class]

你將會看像這樣的東西:

(id) $2 = 0x01446e84 NSException

這些數字不重要,但是很明顯的是你正在處理的NSException對象在這裡。

你可以對這個對象調用任何方法。例如:

(lldb) po [$eax name]

這個將會輸出這個異常的名字,在這裡是NSInvalidArgumentException,並且:

(lldb) po [$eax reason]

這個將會輸出錯誤訊息:

(unsigned int) $4 = 114784400 Receiver () has nosegue with identifier ‘ModalSegue‘

 

注意:當你僅僅使用了“po $eax”,這個命令將會對這個對象調用“description”方法和列印出來,在這個情況下,你也會得到錯誤的訊息。

 

 

 

實用LLDB命令

命令名 用法 說明

 
expr expr 運算式 可以在調試時動態執行指定運算式,並將結果列印出來,很有用的命令。
po po 運算式 與expr類似,列印對象,會調用對象description方法。是print-object的簡寫
print print (type) 運算式 也是列印命令,需要指定類型。
bt bt [all] 列印呼叫堆疊,是thread backtrace的簡寫,加all可列印所有thread的堆棧。
br l br l breakpoint list的簡寫
process continue l process continue 簡寫:c
thread step-in l thread step-in l 簡寫:s
thread step-inst l thread step-inst l 簡寫:si
thread step-over l thread step-over l 簡寫:n
thread step-over-inst l thread step-over-inst l 簡寫:ni
thread step-out l thread step-out l 簡寫:f
thread list thread list 簡寫:th l

更多的命令可以參見這個網址

IOS調試lldb常用命令

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.