前言
不及跬步无以至千里,不积小流无以成江海。
贵在坚持 ,让关注我的伙伴们久等了,今天讲讲在xcode中的另一个调试高手chisel,让你在xcode的编辑中健步如飞!
安装
- 安装启示很简单的
brew update
brew install chisel
2。这里需要注意下:
出现如下情况时:
==> Caveats
Add the following line to ~/.lldbinit to load chisel when Xcode launches:
command script import /usr/local/opt/chisel/libexec/fblldb.py
3.有步骤2,所以在这里 配置环境:
进入终端,执行
touch ~/.lldbinit
vim ~/.lldbinit
用vim编辑器编辑,进入文件后,加上这样一句
command script import /usr/local/opt/chisel/libexec/fblldb.py
然后esc,输入:wq保存并推出。
重启Xcode,随便打印一个断点,进入lldb调试模式,输入pjson + 你要打印的数据,如果输入pjson有补全提示的话就代表打印成功了
使用
2.1浏览
这个命令可以打印一个视图的层级,如:
(lldb) pviews self.bottomBar
<UIButton: 0x7fed1f59ed00; frame = (127.5 549; 120 40); opaque = NO; layer = <CALayer: 0x600000228620>>
| <UIImageView: 0x7fed1f59f470; frame = (0 0; 120 40); clipsToBounds = YES; opaque = NO; userInteractionEnabled = NO; layer = <CALayer: 0x60000003aec0>>
2.2 pvc
pvc可以打印一个viewcontroller的层级,而不是查看如:
2.3 可视化
可视化这个命令比较强大,它可以使用预览应用程序打开UImageView CGImageRef UIView CALayer如:
visualize uiimageview
2.4 fv&fvc
这两个命令是用来通过类名搜索当前内存中存在的视图和的viewController实例的命令,支持正则搜索。
(lldb) fv bar
2017-08-15 16:50:50.083818+0800 StilliPhone[41689:11858421] [] nw_socket_write_close shutdown(18, SHUT_WR): [57] Socket is not connected
2017-08-15 16:50:50.084305+0800 StilliPhone[41689:11858421] [] nw_endpoint_flow_service_writes [29.1 127.0.0.1:51217 ready socket-flow (satisfied)] Write request has 0 frame count, 0 byte count
2017-08-15 16:50:50.085059+0800 StilliPhone[41689:11858421] [] nw_socket_get_input_frames recvmsg(fd 20, 1024 bytes): [54] Connection reset by peer
2017-08-15 16:50:50.087424+0800 StilliPhone[41689:11833912] [] tcp_connection_write_eof_block_invoke Write close callback received error: [89] Operation canceled
0x7fed1f412b20 UINavigationBar
0x7fed1f50daf0 _UIBarBackground
0x7fed1f71db30 _UINavigationBarBackIndicatorView
0x7fed1f413e50 CYLTabBar
0x7fed1f4140a0 _UIBarBackground
0x7fed1f5134b0 UITabBarButton
0x7fed1f520e30 UITabBarSwappableImageView
0x7fed1f513760 UITabBarButtonLabel
0x7fed1f522a90 UITabBarButton
0x7fed1f418560 UITabBarSwappableImageView
0x7fed1f523910 UITabBarButtonLabel
0x7fed1f6269f0 UITabBarButton
0x7fed1f5250b0 UITabBarSwappableImageView
0x7fed1f626ca0 UITabBarButtonLabel
0x7fed1f5263f0 UITabBarButton
0x7fed1f626f60 UITabBarSwappableImageView
0x7fed1f5266a0 UITabBarButtonLabel
(lldb) fvc bar
0x7fed1f880c00 CYLTabBarController
2.5显示&隐藏
这两个命令用来显示和隐藏一个指定的UIView
(lldb) hide self.bottomBar
(lldb) show self.bottomBar
也可以使用内存地址隐藏和现实视图,比如通过fv cate找到一个视图后使用隐藏隐藏它
(lldb)fv cate
0x7fd5b6e06920 AlbumCategoryView
(lldb) hide 0x7fd5b6e06920
2.6 打印
(lldb) pjson dic
{
"activityname" : "全城寻找高温下的劳动者",
"activityid" : "2806"
}
2.7 标记
(lldb) border self.bottomBar
(lldb) unborder self.bottomBar
(lldb) mask self.bottomBar
(lldb) unmask self.bottomBar
2.8 重新渲染 caflush
这个命令会重新渲染,即可以重新绘制界面, 相当于执行了 [CATransaction flush] 方法,要注意如果在动画过程中执行这个命令,就直接渲染出动画结束的效果。
例, 其中 $141 即是目标_tableView:
(lldb) p _tableView
(UITableView *) $141 = 0x00007fed2000d000
(lldb) e (void)[$141 setBackgroundColor:[UIColor orangeColor]]
(lldb) caflush
2.9 打断点用 bmessage
这个命令就是用来打断点用的了,虽然大家断点可能都喜欢在图形界面里面打,但是考虑一种情况:我们想在 [MyViewController viewWillAppear:] 里面打断点,但是 MyViewController并没有实现 viewWillAppear:方法, 以往的作法可能就是在子类中实现下viewWillAppear:,然后打断点,然后rebuild。
那么幸好有了 bmessage命令。我们可以不用这样就可以打这个效果的断点: (lldb) bmessage -[MyViewController viewWillAppear:] 上面命令会在其父类的 viewWillAppear: 方法中打断点,并添加上了条件:[self isKindOfClass:[MyViewController class]]