Reveal作为分析APP UI的利器确实非常好用,用来查看任意UI布局也很方便
一.模拟器进行分析
1.打开Reveal(http://revealapp.com下载)
2.打开Xcode
3.Reveal——Help——Show Reveal Library in Finder
4.Xcode——导入Reveal.framework至当前项目中
5. 工程设置中,在Other Linker Flags项增加-ObjC -framework Reveal
6.运行当前项目后,打开Reveal,选择当前运行程序进行关联
7.连接成功后,应用的UI层次 元素都可以妥妥的看到了
二.延长Reveal试用时间
对于官网下载的Reveal,默认给予的是30天的使用限制,然后得付款……在天朝讲究付款(=寻找**方法),然后开始找**方法,http://jingwei6.me/2014/02/28/reveal_*****.html直接看结论:
”所以,要想永久试用Reveal,只需要打开
/Users/XC/Library/Preferences/com.ittybittyapps.Reveal.plist
把IBAApplicationPersistenceData这一项删除就是了。”
然后测试没有成功,再次打开软件还是弹出试用提示,继续尝试,用CleanMyMac打开发现有文件存在,删掉后重复上面的步骤,再次打开Reveal,OK成功,不过在后上角看到还是有试用小提示,时间又变成30天,总来说这个方法只能延长时间,还是没能实际**,继续寻找好的方法!
标签: 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程序的界面了。