reveal
官方有好几种方法,这里主要推荐两种方法。
打断点(只对模拟器有效果)
1.打开项目之后,来到打断点界面。Add Symbolic Breakpoint.
image2.edit-Breakpoint(配置断点)
UIApplicationMain ----> 点击 Add Action -----> 选择 Debugger Command ----> 填写下面内容
expr (Class)NSClassFromString(@"IBARevealLoader") == nil ? (void *)dlopen("/Applications/Reveal.app/Contents/SharedSupport/iOS-Libraries/RevealServer.framework/RevealServer", 0x2) : ((void*)0)
断点设置
3.在断点右击 ---> 选User
image4.运行项目,模拟器中的项目就可以在Reveal中看到了。
此断点在一个项目完成设置之后,在另一个项目也可以生效,并不需要每个项目都设置一次。
二.导入frame法(真机和模拟器都有效)
本方法只对进行过设置的项目才有效,有就是说每个项目需要设置一次,因为是在真机运行,而且模拟器运行的也是每个项目需设置一次。
[官方说明](file:///Applications/Reveal.app/Contents/SharedSupport/Documentation/Integrating%20Reveal%20Linking.html
1.启动Reveal并打开library目录
image2.将RevealServer.framework复制到项目的根目录,特别提醒:在拖到这个文件的时候记得按着option键拖到,不然只是一个引用,编译的时候会出错,打开项目。
image3.选中项目target ----> Build Settings ----> 搜索 Framework Search Paths ----> 将 $(inherited) $(SRCROOT)
填进去
image
4.Build Settings ----> Other Linker Flags --->填入 -ObjC -weak_framework RevealServer
5.Build Settings ----> Runpath Search Paths --->填入 $(inherited) @executable_path/Frameworks
,我的项目本身就填有这个,略过了。
6.Build Phases ----> 点击+添加 Run Script phase
复制下面的内容到描述里
export REVEAL_SERVER_FILENAME="RevealServer.framework"
# Update this path to point to the location of RevealServer.framework in your project.
export REVEAL_SERVER_PATH="${SRCROOT}/${REVEAL_SERVER_FILENAME}"
# If configuration is not Debug, skip this script.
[ "${CONFIGURATION}" != "Debug" ] && exit 0
# If RevealServer.framework exists at the specified path, run code signing script.
if [ -d "${REVEAL_SERVER_PATH}" ]; then
"${REVEAL_SERVER_PATH}/Scripts/copy_and_codesign_revealserver.sh"
else
echo "Cannot find RevealServer.framework, so Reveal Server will not be started for your app."
fi
image
7.打开项目,运行,就可以在reveal中看到项目了。
破解版reveal.app分享
密码:cm9m