thread backtrace命令可以方便地供开发者查看线程堆栈信息,简写为bt 。比如,当程序崩溃的时候,开发者可以查看堆栈调用列表 。示例如下:
文章插图
- (lldb) thread backtrace
- * thread #1, queue = 'com.apple.main-thread', stop reason = breakpoint 2.1
- frame #0: 0x0000000104cc2705 libobjc.A.dylib`objc_exception_throw
- frame #1: 0x00000001056704ec CoreFoundation`_CFThrowFormattedException + 194
- frame #2: 0x00000001057a6b00 CoreFoundation`-[__NSArrayI objectAtIndexedSubscript:] + 96
- * frame #3: 0x00000001043a1df7 QiDebugDemo`-[QiConsoleViewController testLLDBCommands](self=0x00007fadc7c50400, _cmd="testLLDBCommands") at QiConsoleViewController.m:33
- frame #4: 0x00000001043a1d5a QiDebugDemo`-[QiConsoleViewController viewDidLoad](self=0x00007fadc7c50400, _cmd="viewDidLoad") at QiConsoleViewController.m:26
- ...
- frame #18: 0x00000001056830be CoreFoundation`__CFRunLoopDoObservers + 430
- frame #19: 0x0000000105683751 CoreFoundation`__CFRunLoopRun + 1537
- frame #20: 0x0000000105682e11 CoreFoundation`CFRunLoopRunSpecific + 625
- frame #21: 0x000000010ddd51dd Graphicsservices`GSEventRunModal + 62
- frame #22: 0x000000010a1db81d UIKitCore`UIApplicationMain + 140
- frame #23: 0x00000001043a2450 QiDebugDemo`main(argc=1, argv=0x00007ffeeb85df90) at main.m:7
- frame #24: 0x0000000107858575 libdyld.dylib`start + 1
- (lldb) thread return string
- (lldb) continue
- 2019-02-27 17:22:47.323225+0800 QiDebugDemo[5071:222700] resultString: Qi_Share
6. 断点
作者在iOS 调试方法:断点这篇文章中介绍过断点的用法 。其实,可视化的断点都可以使用LLDB语法来实现 。比如下图中的1、2、3、4、5都能用LLDB命令表达 。
文章插图
- 启用/禁用断点(breakpoint enable/disable)
- 继续执行程序(continue)
- 执行下一步(next)
- 进入方法(step)
- 跳出方法(finish)
- //! 查看所有断点
- (lldb) breakpoint list
- //! 为所有类中的viewDidAppear:设置断点
- (lldb) breakpoint set -n viewDidAppear:
- //! 为QiConsoleViewController.m文件中的testLLDBCommands方法设定断点
- (lldb) breakpoint set -f QiConsoleViewController.m -n testLLDBCommands
- //! 为QiConsoleViewController.m文件中的第32行代码设定断点
- (lldb) breakpoint set -f QiConsoleViewController.m -l 32
- //! 为handleString:方法设定条件断点,条件为string != nil
- (lldb) breakpoint set - handleString: -c string != nil
想比较于breakpoint是对方法生效的断点,watchpoint则是对地址生效的断点 。watchpoint类似于KVO的工作原理,当观察到属性地址里面的东西改变时,就让程序中断,其语法为:watchpoint [] 。其应用场景示例如下:
文章插图
- (lldb) watchpoint set variable string
- Watchpoint created: Watchpoint 1: addr = 0x7ffeef497360 size = 8 state = enabled type = w
- declare @ '/Users/huangxianshuai/Desktop/Products/QiShare/QiDebugDemo/QiDebugDemo/QiConsoleViewController.m:33'
推荐阅读
- iOS系统的底层通知框架库
- 手机信号栏常用“符号”大揭秘!
- WordPress常用的函数、方法汇总
- 5种最常用的黑客工具,以及如何防御
- iOS13新增重磅功能!不止续航改善,这两个功能才是王炸
- HTML5网页录音和上传到服务器,支持PC、Android,支持IOS微信
- python中全部关于字符串常用操作的总结
- ios13闪退怎么解决
- 常用架构模式
- 苹果手机微信表情特效怎么弄的 ios微信新表情