您的位置:首页 > 其它

Reveal详细安装教程

2015-08-28 16:36 387 查看

Reveal的详细安装使用

标签: Reveal 工具 调试 iOS

一、终端的操作

首先最重要的一点,要先把Reveal软件放到Application中,否则路径是错的,后面的设置也就没有作用了

打开终端,输入
vim ~/.lldbinit


接着输入

command alias reveal_load_sim expr (void*)dlopen("/Applications/Reveal.app/Contents/SharedSupport/iOS-Libraries/libReveal.dylib", 0x2);
command alias reveal_load_dev expr (void*)dlopen([(NSString*)[(NSBundle*)[NSBundle mainBundle]               pathForResource:@"libReveal" ofType:@"dylib"] cStringUsingEncoding:0x4], 0x2);
command alias reveal_start expr (void)[(NSNotificationCenter*)[NSNotificationCenter defaultCenter]           postNotificationName:@"IBARevealRequestStart" object:nil];
command alias reveal_stop expr (void)[(NSNotificationCenter*)[NSNotificationCenter defaultCenter]            postNotificationName:@"IBARevealRequestStop" object:nil];


此时终端属于 insert 状态 按
ESC
退出插入状态

接下来 就要退出终端了
shift
+
q
键入命令行状态

在终端输入
wq
即保存退出

二、xcode内的设置

点击该方法左边的行号区域,增加一个断点,之后右击该断点,选择
Edit Breakpoint


点击
Action
项边右的
Add Action
,然后输入
reveal_load_sim


勾选上
Options
上的
Automatically continue after evaluating
选项 如下图



三、见证神奇的时刻

现在我们可以运行模拟器,然后打开Reveal,就可以在Reveal界面的左上角,看到有模拟器可以连接调试,选择它,则可以在Reveal中查看和调试该iOS程序的界面了。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: