標簽: Reveal 工具 調試 iOS
首先最重要的一點,要先把Reveal軟件放到Application中,否則路徑是錯的,後面的設置也就沒有作用了
打開終端,輸入vim ~/.lldbinit
接著輸入
此時終端屬於 insert 狀態 按command alias reveal_load_sim expr (void*)dlopen("/Applications/Reveal.app/Contents/SharedSupport/iOS-Libraries/libReveal.dylib", 0x2); command alias reveal_load_dev expr (void*)dlopen([(NSString*)[(NSBundle*)[NSBundle mainBundle] pathForResource:@"libReveal" ofType:@"dylib"] cStringUsingEncoding:0x4], 0x2); command alias reveal_start expr (void)[(NSNotificationCenter*)[NSNotificationCenter defaultCenter] postNotificationName:@"IBARevealRequestStart" object:nil]; command alias reveal_stop expr (void)[(NSNotificationCenter*)[NSNotificationCenter defaultCenter] postNotificationName:@"IBARevealRequestStop" object:nil];
ESC
退出插入狀態
接下來 就要退出終端了shift
+q
鍵入命令行狀態
在終端輸入
wq
即保存退出
點擊該方法左邊的行號區域,增加一個斷點,之後右擊該斷點,選擇Edit Breakpoint
點擊Action
項邊右的Add Action
,然後輸入reveal_load_sim
勾選上Options
上的Automatically continue after evaluating
選項 如下圖
現在我們可以運行模擬器,然後打開Reveal,就可以在Reveal界面的左上角,看到有模擬器可以連接調試,選擇它,則可以在Reveal中查看和調試該iOS程序的界面了。