Xcode_LLDB调试技巧

作者: 陈胜华 | 来源:发表于2016-03-23 13:38 被阅读951次

    调试窗口介绍

    //1.第一个按钮点击就会收起这一栏目了,也就看不见了。
    //2.第二个按钮:如果为蓝色,就是断点有效。如果点击它变成灰色,就是所有断点不起作用。
    //3.第三个按钮:是继续的意思,会让程序从断点处恢复继续往下运行,我们点了这个按钮后,应用就会恢复正常运行状态。
    //4.第四个按钮是:单步执行的意思,每点这个按钮一次,程序就会从我们断点开始的地方,向下执行一步。
    //5.第五个按钮是:进入执行的意思,简单来说就是如果我们当前的断点在一个函数调用上,把么断点会继续进入这个函数的内部进行调试。
    //6.第六个按钮是:跳出的意思, 就是如果我们当前在一个函数中,它会跳出当前的函数,回到函数的调用处。
    
    

    问题1:LLDB 打印 frame (如:po self.view.frame)

    打开终端:(依次输入,什么都没提示,打开xcode项目,有Hook 1(expr --@import UIKit等提示,意味着成功))
    
    1.touch ~/.lldbinit
    
    2.echo display @import UIKit >> ~/.lldbinit
    
    3.echo target stop-hook add -o \"target stop-hook disable\" >> ~/.lldbinit
    
    4.不使用删除:rm ~/.lldbinit
    
    

    问题2:给xcode SDK加权限,防止xcode意外被修改

    打开终端:sudo ditto /Volumes/Xcode/Xcode.app /Applications/Xcode.app
    

    问题3:iOS内存优化针对UIImage

    打开instrument(或者快捷键command+I)--》选择GPU Driver -->instrument Detail搜索框内容输入:UIImage-->反复在当前应用上不停的来回跳转同一个界面,
    
    问题原因:imageNamed读取图片的方法,会缓存在内存中,所以较大的图片,还是用imageWithContentsOfFile
    
    解决方法:用以下方法加载图片
    
    1.
    
    #define LOADIMAGE(file,ext) [UIImage imageWithContentsOfFile:[NSBundle mainBundle]pathForResource:file ofType:ext]
    
    2.
    
    #define IMAGE(A) [UIImage imageWithContentsOfFile:[NSBundle mainBundle] pathForResource:A ofType:nil]
    

    问题4:在控制台里打印view的层级

    1.po [[[UIApplication sharedApplication] keyWindow] recursiveDescription]
    
    2.打印指定View的层级:po?[view?recursiveDescription]
    
    

    问题5:po [[UIWindow keyWindow] _autolayoutTrace]命令输出整个视图的层次结构

    1.打开你的终端(terminal)输入touch ~/.lldbinit命令;
    2.在open ~/.lldbinit,不出意外的话文本编辑器打开;
    3.在此设置别名,在文本编辑里输入command alias zxp_autolayout_trace po (id)[[UIWindow keyWindow] _autolayoutTrace]即可。
    

    问题6: LLDB各种调试(以下均在LLDB窗口输入)

    //调试1:来检查视图控制器
    po [[[UIWindow keyWindow] rootViewController] _printHierarchy]
     
    //调试2:LLDB过程中修改修改变量值(LLDB窗口中)
    expression \e 更改变量值
    
    如:
      expression _evlblContent.text = @"yyyy"
      expression count = 3
    
    //调试3:查看xcode的栈帧信息文(打印栈帧信息)
    bt
    
    //*********************************************************//
    注意:
    1)在 LLDB 中使用变量要加$符号p (char)[[$array objectAtIndex:$a] characterAtIndex:0]
    2)唯一的缺点就是不能创建新函数... 这意味着不能创建新的类,block,函数,有虚拟函数的 C++ 类等等。
    
    

    问题7:image命令可用于寻址,有多个组合命令,在控制台输入help image可查看image的用法

    //1.比如,定位到某个地址
    ---------------------------------------------------------
    异常如下:
    *** Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[__NSArrayI objectAtIndex:]: index 3 beyond bounds [0 .. 1]'
    *** First throw call stack:
    (
        0   CoreFoundation                      0x0000000100e6bd85 __exceptionPreprocess + 165
        1   libobjc.A.dylib                     0x00000001008dddeb objc_exception_throw + 48
        2   CoreFoundation                      0x0000000100d54934 -[__NSArrayI objectAtIndex:] + 164
        3   CALayer_案例                      0x0000000100248a2a -[TestCrashViewConteoller viewDidAppear:] + 234
        4   UIKit                               0x0000000101e74335 -[UIViewController _setViewAppearState:isAnimating:] + 830
        5   UIKit                               0x0000000101e74cb8 -[UIViewController _endAppearanceTransition:] + 262
        6   UIKit                               0x0000000101eaf86f -[UINavigationController navigationTransitionView:didEndTransition:fromView:toView:] + 1290
        7   UIKit                               0x0000000101ea5630 __49-[UINavigationController _startCustomTransition:]_block_invoke + 233
        8   UIKit                               0x00000001027014c8 -[_UIViewControllerTransitionContext completeTransition:] + 101
        9   UIKit                               0x0000000101cbc8a3 __53-[_UINavigationParallaxTransition animateTransition:]_block_invoke95 + 834
        10  UIKit                               0x0000000101d8453e -[UIViewAnimationBlockDelegate _didEndBlockAnimation:finished:context:] + 644
        11  UIKit                               0x0000000101d617ff -[UIViewAnimationState sendDelegateAnimationDidStop:finished:] + 241
        12  UIKit                               0x0000000101d61bae -[UIViewAnimationState animationDidStop:finished:] + 80
        13  QuartzCore                          0x0000000101b853c8 _ZN2CA5Layer23run_animation_callbacksEPv + 308
        14  libdispatch.dylib                   0x000000010365e3eb _dispatch_client_callout + 8
        15  libdispatch.dylib                   0x00000001036461ef _dispatch_main_queue_callback_4CF + 1738
        16  CoreFoundation                      0x0000000100dc50f9 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 9
        17  CoreFoundation                      0x0000000100d86b99 __CFRunLoopRun + 2073
        18  CoreFoundation                      0x0000000100d860f8 CFRunLoopRunSpecific + 488
        19  GraphicsServices                    0x0000000106495ad2 GSEventRunModal + 161
        20  UIKit                               0x0000000101cd3f09 UIApplicationMain + 171
        21  CALayer_案例                      0x000000010024891f main + 111
        22  libdyld.dylib                       0x000000010369392d start + 1
        23  ???                                 0x0000000000000001 0x0 + 1
    )
    libc++abi.dylib: terminating with uncaught exception of type NSException
    
    ---------------------------------------------------------
    LLDB输入:image lookup --address 0x0000000100248a2a
    
    ---------------------------------------------------------
    打印:     
    Address: CALayer_案例[0x0000000100002a2a] (CALayer_案例.__TEXT.__text + 5306)
    Summary: CALayer_案例`-[TestCrashViewConteoller viewDidAppear:] + 234 at TestCrashViewConteoller.m:18
    
    ---------------------------------------------------------
    说明:通过"0x0000000100248a2a"这地址,可以定位到TestCrashViewConteoller控制器的第18行
    
    

    相关文章

      网友评论

        本文标题:Xcode_LLDB调试技巧

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