Reveal 查看越狱手机日志

最近试了一下reveal,虽然xcode已相当强悍的查看本身app的ui结构,但是其他App的结构无法获得。

大致介绍一下reveal,他是一款洞察ui结构的工具。使用步骤如下

1、下载reveal,安装在mac上,确定framework的路径

2、ssh将ios framework copy到越狱手机上

3、写reveal的配置文件,确保要查看的目标app的bundleid在配置文件里

4、重启越狱手机

5、同一网段可以发现被配置bundle的手机,并查看ui结构了。

相关命令:

scp -r /Applications/Reveal.app/Contents/SharedSupport/iOS-Libraries/Reveal.framework [email protected]:/System/Library/Frameworks

scp /Applications/Reveal.app/Contents/SharedSupport/iOS-Libraries/libReveal.dylib [email protected]:/Library/MobileSubstrate/DynamicLibraries

scp -r /Users/yongming/Downloads/libReveal.plist [email protected]:/Library/MobileSubstrate/DynamicLibraries

密码默认是 openSSH的root账户默认密码是:alpine


plist如下:

{

Filter = {

Bundles = ("com.apple.AppStore");

};

}

相关文章:

iOS使用Reveal分析他人app界面

http://blog.csdn.net/cuibo1123/article/details/45694657

你可能感兴趣的:(Reveal 查看越狱手机日志)