标签:
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_crack.html直接看结论:
”所以,要想永久试用Reveal,只需要打开
把IBAApplicationPersistenceData这一项删除就是了。”
标签: Reveal 工具 调试 iOS
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];
ESC
退出插入状态shift
+q
键入命令行状态在终端输入wq
即保存退出
Edit Breakpoint
Action
项边右的Add Action
,然后输入reveal_load_sim
Options
上的Automatically continue after evaluating
选项 如下图标签:
原文地址:http://www.cnblogs.com/xiao-flag/p/5756994.html