Reveal 分析iOS界面

Reveal可以帮助我们快速查看iOS程序的UI界面下面说下配置过程。

一、获取工具

下载地址:http://download.csdn.net/detail/qqmcy/9125201

二、模拟器调试

2.1配置文件

在 /Users/你的用户名路径下创建.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];
在AppDelegate.m中

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions

按下图配置


运行程序,在左上角选择你的程序即可。
















猜你喜欢

转载自blog.csdn.net/qqMCY/article/details/48652223