·您现在的位置: 云翼网络 >> 文章中心 >> 网站建设 >> app软件开发 >> IOS开发 >> Reveal详细安装教程

Reveal详细安装教程

作者:佚名      IOS开发编辑:admin      更新时间:2022-07-23

Reveal的详细安装使用

标签: Reveal 工具 调试 iOS


一、终端的操作

  1. 首先最重要的一点,要先把Reveal软件放到application中,否则路径是错的,后面的设置也就没有作用了
  2. 打开终端,输入vim ~/.lldbinit
  3. 接着输入

    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];
  4. 此时终端属于 insert 状态 按ESC退出插入状态
  5. 接下来 就要退出终端了 shift+q键入命令行状态
  6. 在终端输入wq 即保存退出

二、xcode内的设置

  1. 点击该方法左边的行号区域,增加一个断点,之后右击该断点,选择Edit Breakpoint
  2. 点击Action项边右的Add Action,然后输入reveal_load_sim
  3. 勾选上Options上的Automatically continue after evaluating选项 如下图
    Reveal设置图片

三、见证神奇的时刻

现在我们可以运行模拟器,然后打开Reveal,就可以在Reveal界面的左上角,看到有模拟器可以连接调试,选择它,则可以在Reveal中查看和调试该iOS程序的界面了。