Reveal 1.6.3破解以及一种推荐使用方式

关于破解文件,有个通杀软件链接在这里,下载后看里面的txt说明,到Reveal安装目录,假设安装到了Application下/Applications/Reveal.app/Contents/MacOS,先把文件夹下的Reveal重命名为Reveal_,再破解文件夹里面的ChinaPYG.dylib和Reveal复制到这个目录下,重新启动Reveal就完成了破解。

以下为推荐的使用教程:

Load Reveal Without Changing Your Xcode Project

不修改Xcode工程来使用Reveal(文字摘录下载之后welcome下的官方教程)

This method will only work for apps running in the iOS or tvOS Simulator.

Loading Reveal without changing your Xcode project is a great way to let you introspect any project you happen to be working on without needing to change anything. It also means you don't need to worry about accidentally shipping a release build of your app linked with the Reveal library.

1. Open your iOS or tvOS project in Xcode, and selectView → Navigators → Show Breakpoint Navigator.

2. In the bottom left of the pane, click the+button and selectAdd Symbolic Breakpoint.


3. Enter UIApplicationMain into the Symbol field.

4. Click the Add Action button, and ensure that Action is set to Debugger Command.

5. Copy and paste the following text into the field below:

For iOS targets:

expr (Class)NSClassFromString(@"IBARevealLoader") == nil ? (void *)dlopen("/Applications/Reveal.app/Contents/SharedSupport/iOS-Libraries/libReveal.dylib", 0x2) : ((void*)0)

For tvOS targets:

expr (Class)NSClassFromString(@"IBARevealLoader") == nil ? (void *)dlopen("/Applications/Reveal.app/Contents/SharedSupport/tvOS-Libraries/libReveal-tvOS.dylib", 0x2) : ((void*)0)

Note: If necessary, update the path to Reveal.app above to the correct location for your Mac.

6. Check Automatically continue after evaluating actions.


7. Right click the newly created breakpoint and selectMove Breakpoint To → User.


Reveal 1.6.3破解以及一种推荐使用方式_第1张图片
You can enable and disable the breakpoint as you would any other. User breakpoints are available across all Xcode projects.


8. In Xcode, build and run your application under the iOS or tvOS Simulator.

If everything worked, you should be able to switch to Reveal and see your iOS or tvOS application listed in the app selector pull-down. Select your app and verify that you can see a snapshot of the app matching what you see in the simulator.


Getting Help

If you have any problems or questions about integrating Reveal into your app,head over to our support site.

你可能感兴趣的:(Reveal 1.6.3破解以及一种推荐使用方式)