美文网首页iOS资料调试
浅记Xcode调试器lldb简单使用

浅记Xcode调试器lldb简单使用

作者: 月咏蝴蝶 | 来源:发表于2016-04-01 16:56 被阅读212次

    之前使用Xcode调试的时候,只知道使用断点,以及调试器中continue和step over的使用,定位错误的时候一直使用NSLog打印或者使用step over一步步测试,现在才知道Xcode集成有如果强大的调试器,现在只会简单的使用,在此先记录一下。

    什么时候LLDB调节器以及它的相关信息我就不介绍了,直接记录一下常用的知识点。

    1. frame variable命令
      检查帧参数和本地变量最简便的方式,对变量执行"对象打印"操作。(这里只打印当前方法断点之前的本地变量)
    不指明变量的情况下
    (lldb) frame variable
    (ViewController *) self = 0x00007fbc18d49dd0
    (SEL) _cmd = "viewDidLoad"
    (NSArray *) array = 0x000000010ee5a50c
    指明变量的情况下
    (lldb) frame variable self
    (ViewController *) self = 0x00007fbc18d49dd0
    (lldb) 
    
    1. print/ po 命令(print可以缩写为p)
      print命令会打印出对象的很多信息,po命令查看对象的值的信息
    (lldb) print _colorNumber
    (NSInteger) $2 = 197
    (lldb) p _colorNumber
    (NSInteger) $3 = 197
    (lldb) po _videoButton
    <UIButton: 0x7ff7c0ed2e30; frame = (292 96; 67 30); opaque = NO; autoresize = RM+BM; layer = <CALayer: 0x7ff7c0ed0eb0>>
    
    1. expression命令
      改变程序实际参数的值
    (lldb) p _colorNumber
    (NSInteger) $5 = 197
    (lldb) expression _colorNumber
    (NSInteger) $6 = 197
    (lldb) expression _colorNumber = 10
    (NSInteger) $7 = 10
    (lldb) 
    
    1. image命令
      image list 查看工程中使用的库
    (lldb) image list
    [  0] D9B236BC-4AC1-325F-B3EF-3F06DBDA7119 0x00007fff6e6ae000 /usr/lib/dyld 
    [  1] 49268249-F1CD-35FC-BFFD-B4B8F3751B0D 0x000000010e2b7000 /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/dyld_sim 
    [  2] F04EB86C-A5AA-31CF-ADEA-053C4ACE0792 0x000000010e096000 /Users/chenkaijie/Library/Developer/Xcode/DerivedData/VoiceDemo-ajsvdzmvgycapjctirwdysaihzvb/Build/Products/Debug-iphonesimulator/VoiceDemo.app/VoiceDemo 
    

    程序崩溃的时候定位,查看具体报错位置

        NSArray *array = @[@"1", @"2", @"3"];
        NSLog(@"%@", [array objectAtIndex:4]);
    
    *** First throw call stack:
    (
        0   CoreFoundation                      0x000000010f849d85 __exceptionPreprocess + 165
        1   libobjc.A.dylib                     0x000000010efb0deb objc_exception_throw + 48
        2   CoreFoundation                      0x000000010f732934 -[__NSArrayI objectAtIndex:] + 164
        3   VoiceDemo                           0x000000010e0979ac -[ViewController viewDidLoad] + 220
    
    (lldb) image lookup --address 0x000000010e0979ac
          Address: VoiceDemo[0x00000001000019ac] (VoiceDemo.__TEXT.__text + 220)
          Summary: VoiceDemo`-[ViewController viewDidLoad] + 220 at ViewController.m:73
    (lldb) 
    
    1. 调试器几个常用按钮
      Xcode调试器最常用的几个按钮
      第一个按钮要么一直运行,要么直到下一个断点
      第二个按钮黑盒方式一行一行代码执行下去
      第三个按钮跳进一个函数调用来调试或者检查程序的执行情况
      第四个按钮执行到下一个返回语句 (直到一个堆栈帧结束) 然后再次停止(不小心跳到某一个函数,但是你想跳过它)
    2. Edit Breakpoint...
      右键断点符号,选择Edit Breakpoint...
      填写断点触发条件:self.colorNumber == 193
      填写断点执行动作:p _colorNumber


      选择Edit Breakpoint然后填写条件
    断点时输出显示
    (NSInteger) $1 = 197
    (lldb) 
    
    1. Add Symbolic Breakpoint...
      Xcode左侧顶上选择断点界面,界面左下角选择+号


      Add Symbolic Breakpoint...

      我们可以可以在里面添加 **例如 -[NSArray objectAtIndex:] ** 这样的符号断点。这样每次调用这个函数的时候,程序都会停止,不管是你调用还是苹果调用。
      同样我们也可以填写触发条件和断点时候的执行动作,那个Ignore是忽略前N个。


      填写触发条件

    暂时就列举那么多,有时间再记录一些常用的。
    记录来源网站:
    LLDB调试器使用简介
    与调试器共舞 - LLDB 的华尔兹

    相关文章

      网友评论

        本文标题:浅记Xcode调试器lldb简单使用

        本文链接:https://www.haomeiwen.com/subject/yrcdlttx.html