LLDB工具- Chisel - Speed your Debugging!

Chisel is a collection of LLDB commands to assist debugging iOS apps.
Chiselfacebook团队的工程师用python写的LLDB的拓展命令集合。里面的一些命令可以让你的调试加速。

Chisel安装

brew update
brew install chisel

Chisel常用命令

pviews

打印view层次

也许你想打印某个UIView的frame或者内存地址,无需再使用Capture View Hierarchy, 直接使用pviews命令即刻

pviews [--up] [--depth=depth] 

--up/-u: 以view为起始位置,向上打印,直到打印到window层
--depth/-d: 传入int类型,表示打印的层数,0表示没有限制
e.g: 打印一下self.view层级:

(lldb) pviews self.view
>
   | >
   | >
   | <_UILayoutGuide: 0x7fee7ae1fc20; frame = (0 0; 0 0); hidden = YES; layer = >
   | <_UILayoutGuide: 0x7fee7ae20b30; frame = (0 0; 0 0); hidden = YES; layer = >
   | >

fvc + VC类名 = 找ViewController

fv + UI控件类名 = 找UIView

alamborder

所有带有Ambiguous Layouts
的view立即会被渲染上红色border

Syntax: alamborder [--color=color] [--width=width]
--color
/-c
: border的颜色,参数为string类型,比如'red', 'green', 'magenta'等,不设置默认为红色。
--width
/-w
: border的宽度,参数为CGFloat类型,不设置默认宽度为2。

e.g: 假设我们写了这么一段代码,可以明显看出,我们没有设置X轴的位置。

UIView *subview = [UIView new];[self.view addSubview:subview];[subview mas_makeConstraints:^(MASConstraintMaker *make) { make.top.offset(100); make.size.equalTo(@100);}];

运行代码之后,在LLDB控制台输入alamborder

(lldb) alamborder
LLDB工具- Chisel - Speed your Debugging!_第1张图片

pinvocation

打印方法调用堆栈,仅支持x86

语法:Syntax: pinvocation [--all]
--all/-a: 表示打印所有堆栈,不设置默认只打印当前堆栈
说明:与bt命令类似,不过信息比bt打印得更详细,遗憾的是只能支持x86

e.g: 打印一下当前堆栈

(lldb) pinvocation
frame #0: 0x000962aa TMasonry`-[ViewController viewDidLoad](self=0x7bf2d9c0, _cmd="viewDidLoad") + 234 at ViewController.m:28
NSInvocation: 0x7bf433e0
self: 0x7bf2d9c0

pkp

通过-valueForKeyPath:打印key path对应的值。

语法: Syntax: pkp
: 需要打印的路径,如self.view
说明:以前打印属性一般都用po obj.xxx,现在我想用pkp obj.xxx是一个更好的选择了,因为po obj.xxx是调用getter方法,如果没有getter方法就无法打印了。pkp obj.xxx不仅会调用getter方法,没有getter方法还会去查找成员变量

e.g: 打印一下self.view

(lldb) pkp self.view
>
pivar

presponder

打印响应链
语法: Syntax: presponder
: UIResponder对象,响应链开始位置

e.g: 打印一个tableView的响应链

(lldb) presponder tableView
; layer = ; contentOffset: {0, 0}; contentSize: {0, 220}>
   | >
   |    | 

taplog

将点击的view打印出来,这个命令对于查找哪个view非常有帮助

语法:Syntax: taplog
说明:要查看的view必须能接收点击事件,也就是他的userInteractionEnabled必须为YES才能被找到,UILabelUIImageView默认userInteractionEnabled为NO。

用法:我们需要先将程序暂停,输入taplog,程序会自己运行,这时候点击你需要查看的view,控制台上就会显示出你刚刚点击的view相关信息

e.g: 我们先将程序暂停,输入taplog

(lldb) taplog
Process 28421 resuming
程序会自己运行,我们再点击一个UIButton:
>

vs

view层级中搜索view,并显示出来
语法:Syntax: vs
:要查找的view

说明:相比fv,vs主要用于显示view在屏幕上的位置,2个命令可以配合使用.

e.g: 假设我们要找屏幕上的一个view, 首先用fv查找UIView类型的view

(lldb) fv UIView 0x7fbcf37228d0 UIView 0x7fbcf3725e90 UIView

然后看看这2个view到底哪个是我们想要找的view

(lldb) vs 0x7fbcf3725e90

Use the following and (q) to quit.

  • (w) move to superview
  • (s) move to first subview
  • (a) move to previous sibling
  • (d) move to next sibling
  • (p) print the hierarchy
>

输入命令后他会帮我们在屏幕上用粉红色标志出来vs
view

LLDB工具- Chisel - Speed your Debugging!_第2张图片

官方参考命令列表

Command Description iOS OS X
pviews Print the recursive view description for the key window. Yes Yes
pvc Print the recursive view controller description for the key window. Yes No
visualize Open a UIImage, CGImageRef, UIView, CALayer, NSData (of an image), UIColor, CIColor, or CGColorRef in Preview.app on your Mac. Yes No
fv Find a view in the hierarchy whose class name matches the provided regex. Yes No
fvc Find a view controller in the hierarchy whose class name matches the provided regex. Yes No
show/hide Show or hide the given view or layer. You don't even have to continue the process to see the changes! Yes Yes
mask/unmask Overlay a view or layer with a transparent rectangle to visualize where it is. Yes No
border/unborder Add a border to a view or layer to visualize where it is. Yes Yes
caflush Flush the render server (equivalent to a "repaint" if no animations are in-flight). Yes Yes
bmessage Set a symbolic breakpoint on the method of a class or the method of an instance without worrying which class in the hierarchy actually implements the method. Yes Yes
wivar Set a watchpoint on an instance variable of an object. Yes Yes
presponder Print the responder chain starting from the given object. Yes Yes

你可能感兴趣的:(LLDB工具- Chisel - Speed your Debugging!)