1、官网http://revealapp.com下载试用版本;
2、根据http://bbs.iosre.com/t/reveal-1-5x/1007论坛的帖子进行试用版破解,去除30days限制;
亲测10.10.5顺利破解;
3、根据http://www.jianshu.com/p/9229812b2038所介绍的方法进行xcode配置,即可使用。
补充,通过3只可以进行模拟器的调试,要想真机联调还需要做几个配置:
1、断点的相应操作有以下不同:
//模拟器 expr (Class)NSClassFromString(@"IBARevealLoader") == nil ? (void *)dlopen("/Applications/Reveal.app/Contents/SharedSupport/iOS-Libraries/libReveal.dylib", 0x2) : ((void*)0)
//真机 expr (Class)NSClassFromString(@"IBARevealLoader") == nil ? (void*)dlopen((char*)[(NSString*)[(NSBundle*)[NSBundle mainBundle] pathForResource:@"libReveal" ofType:@"dylib"] cStringUsingEncoding:0x4], 0x2) : ((void*)0)
2、添加资源文件libReveal.dylib
3、添加运行脚本
Build Phases tab and select Editor → Add Build Phase → Add Run Script
set -e
if [ -n "${CODE_SIGN_IDENTITY}" ]; then
codesign -fs "${CODE_SIGN_IDENTITY}" "${BUILT_PRODUCTS_DIR}/${FULL_PRODUCT_NAME}/libReveal.dylib"
fi