iosxcode調(diào)試攻略
來源:易賢網(wǎng) 閱讀:990 次 日期:2014-12-08 13:45:19
溫馨提示:易賢網(wǎng)小編為您整理了“iosxcode調(diào)試攻略”,方便廣大網(wǎng)友查閱!

1. xcode內(nèi)置gdb,可以使用gdb調(diào)試,調(diào)試命令:

1.1 po 命令:為 print object 的縮寫,顯示對象的文本描述

(lldb) po [$eax class]:輸出異常對象的地址


(lldb) po [$eax name]:輸出這個異常的名字


(lldb) po [$eax reason]:這個將會輸出錯誤消息:


(lldb) “po $eax”:對這個對象調(diào)用“description”方法和打印出來

“$eax”是cup的一個寄存器。在一個異常的情況下,這個寄存器將會包含一個異常對象的指針。注意:$eax只會在模擬器里面工作,假如你在設(shè)備上調(diào)試,你將需要使用”$r0″寄存器

1.2 print 命令:有點類似于格式化輸出,可以輸出對象的不同信息

比如:print (char*)[[dic description] cstring]、(lldb) print (int)[label retaincount]

1.3 info 命令:我們可以查看內(nèi)存地址所在信息

1.4 info line *內(nèi)存地址:可以獲取內(nèi)存地址所在的代碼行相關(guān)信息

1.5 show 命令:顯示 gdb 相關(guān)的信息。如:show version 顯示gdb版本信息

1.6 bt: 顯示當(dāng)前進程的函數(shù)調(diào)用棧的情況;up num:查看調(diào)用的詳細(xì)信息;down:返回棧列表;l:顯示詳細(xì)代碼信息;p:輸出數(shù)值。

2. 添加全局?jǐn)帱c(add exception breakpoint):

2.1 添加步驟:

1. in the bottom-left corner of the breakpoints navigator, click the add button.

2. choose add exception breakpoint.

3. choose the type of exception from the exception pop-up menu.

4. choose the phase of the exception handling process at which you want program execution to stop.

5. click done.

2.2 使用場景:

程序因為sigabrt而crash,想要定位到導(dǎo)致crash的行。

3. 添加符號斷點(add symbolic breakpoint):

3.1 斷點執(zhí)行的時機:symbolic breakpoints stop program execution when a specific function or method starts executing

3.2 添加步驟:

1. steps in the bottom-left corner of the breakpoint navigator, click the add button.

2. choose add symbolic breakpoint.

3. enter the symbol name in the symbol field.

4. click done.

3.3 使用場景:

當(dāng)想讓系統(tǒng)在某個指定條件處中斷時,設(shè)置相應(yīng)的斷點。

比如:

objc_exception_throw:在系統(tǒng)拋出異常處設(shè)置斷點。

-[nsexception raise]:

4. 設(shè)置nszombieenabled、mallocstacklogging、nsautoreleasefreedobjectcheckenabled、nsdebugenabled:

4.1 設(shè)置方法:

1. product->edit scheme...->run...->environmentvariables.

2. add nszombieenabled,set the value with yes

3. add mallocstacklogging, set the value with yes.

4. add nsautoreleasefreedobjectcheckenabled, set the value with yes.

5. add nsdebugenabled, set the value with yes.

4.2 使用場景:

主要為了解決exc_bad_access問題,mallocstacklogging用來啟用malloc記錄(使用方式 malloc_history ${app_pid} ${object_instance_addr})。

4.3 需要注意的問題

nszombieenabled只能在調(diào)試的時候使用,千萬不要忘記在產(chǎn)品發(fā)布的時候去掉,因為nszombieenabled不會真正去釋放dealloc對象的內(nèi)存。

5. 重寫respondstoselector方法

5.1 實現(xiàn)方式

#ifdef _for_debug_

-(bool) respondstoselector:(sel)aselector {

printf(selector: %sn, [nsstringfromselector(aselector) utf8string]);

return [super respondstoselector:aselector];

}

#endif

5.2 使用方法:

需要在每個object的.m或者.mm文件中加入上面代碼(應(yīng)該可以使用類屬實現(xiàn)),并且在other c flags中加入-d _for_debug_(記住請只在debug configuration下加入此標(biāo)記)。這樣當(dāng)你程序崩潰時,xcode的console上就會準(zhǔn)確地記錄了最后運行的object的方法。

更多信息請查看IT技術(shù)專欄

更多信息請查看技術(shù)文章
易賢網(wǎng)手機網(wǎng)站地址:iosxcode調(diào)試攻略
由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請考生以權(quán)威部門公布的正式信息和咨詢?yōu)闇?zhǔn)!
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 加入群交流 | 手機站點 | 投訴建議
工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網(wǎng)安備53010202001879號 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號
云南網(wǎng)警備案專用圖標(biāo)
聯(lián)系電話:0871-65317125(9:00—18:00) 獲取招聘考試信息及咨詢關(guān)注公眾號:hfpxwx
咨詢QQ:526150442(9:00—18:00)版權(quán)所有:易賢網(wǎng)
云南網(wǎng)警報警專用圖標(biāo)