reveal 4.0版本斷點使用方法
阿新 • • 發佈:2018-12-10
在Xcode中開啟iOS或tvOS專案,然後選擇View→Navigators→Show Breakpoint Navigator。
在窗格的左下角,單擊+按鈕並選擇Add Symbolic Breakpoint
。
- 如圖所示分別在各處輸入
1.在1處輸入
UIApplicationMain
2.在2處輸入 iOS工程輸入
expr (Class)NSClassFromString(@"IBARevealLoader") == nil ? (void *)dlopen("/Applications/Reveal.app/Contents/SharedSupport/iOS-Libraries/RevealServer.framework/RevealServer", 0x2) : ((void*)0)
tvOS輸入
expr (Class)NSClassFromString(@"IBARevealLoader") == nil ? (void *)dlopen("/Applications/Reveal.app/Contents/SharedSupport/tvOS-Libraries/RevealServer.framework/RevealServer", 0x2) : ((void*)0)
- 最後右鍵這個斷點,
Move Breakpint To
→User
參考