你好,歡迎來到IOS教程網

 Ios教程網 >> IOS編程開發 >> IOS開發綜合 >> Xcode調試攻略

Xcode調試攻略

編輯:IOS開發綜合

1. Xcode內置GDB,可以使用GDB調試,調試命令:

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

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


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

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

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

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

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

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

        1.3 info 命令:我們可以查看內存地址所在信息

        1.4 info line *內存地址:可以獲取內存地址所在的代碼行相關信息

        1.5 show 命令:顯示 GDB 相關的信息。如:show version 顯示GDB版本信息

        1.6 bt: 顯示當前進程的函數調用棧的情況;"up num":查看調用的詳細信息;down:返回棧列表;l:顯示詳細代碼信息;p:輸出數值。

 2. 添加全局斷點(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,想要定位到導致crash的行。

3. 添加符號斷點(Add Symbolic BreakPoint):

          3.1 斷點執行的時機: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 使用場景:

                       當想讓系統在某個指定條件處中斷時,設置相應的斷點。

                       比如:

                              objc_exception_throw:在系統拋出異常處設置斷點。

                              -[NSException raise]:

4. 設置NSZombieEnabled、MallocStackLogging、NSAutoreleaseFreedObjectCheckEnabled、NSDebugEnabled:

         4.1 設置方法:

                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只能在調試的時候使用,千萬不要忘記在產品發布的時候去掉,因為NSZombieEnabled不會真正去釋放dealloc對象的內存。

5. 重寫respondsToSelector方法

        5.1 實現方式


[cpp] 
#ifdef _FOR_DEBUG_ 
-(BOOL) respondsToSelector:(SEL)aSelector { 
    printf("SELECTOR: %s\n", [NSStringFromSelector(aSelector) UTF8String]); 
    return [super respondsToSelector:aSelector]; 

#endif 
        5.2 使用方法:
               需要在每個object的.m或者.mm文件中加入上面代碼(應該可以使用類屬實現),並且在other c flags中加入-D _FOR_DEBUG_(記住請只在Debug Configuration下加入此標記)。這樣當你程序崩潰時,Xcode的console上就會准確地記錄了最後運行的object的方法。

參考文章:

1. Xcode GDB 調試:http://blog.csdn.net/ch_soft/article/details/7005998

2. XCode的一些調試技巧:http://blog.csdn.net/kesalin/article/details/7222153

3. About the Breakpoint Navigator:http://developer.apple.com/library/mac/#recipes/xcode_help-breakpoint_navigator/articles/about_breakpoint_navigator.html#//apple_ref/doc/uid/TP40010433-CH6-SW1

4. 當程序崩潰的時候怎麼辦 part-1:http://article.ityran.com/archives/1006

5. 當程序崩潰的時候怎麼辦 Part-2:http://article.ityran.com/archives/1143

6. Memory Usage Performance Guidelines:https://developer.apple.com/library/mac/#documentation/performance/Conceptual/ManagingMemory/ManagingMemory.html#//apple_ref/doc/uid/10000160-SW1

 

  1. 上一頁:
  2. 下一頁:
蘋果刷機越獄教程| IOS教程問題解答| IOS技巧綜合| IOS7技巧| IOS8教程
Copyright © Ios教程網 All Rights Reserved