标签:
Reveal是一款收费软件,可以帮助iOS开发者更快的调试界面.为了安装这个软件,网上很多教程都是过时和错误的.导致走了一些弯路.现在记载下来Reveal和xcode的结合步骤:
6. ?In Xcode’s Project Navigator, select your project then do the following for each target that you wish to use with Reveal:
1. Select the?Build Phases?tab and remove?Reveal.framework?from the?Link Binary With Librariessection if it is present.
2.?Select the?Build Settings?tab and add the following to the?Debug?configuration of the?Other Linker Flags?setting:
-ObjC -lz -framework Reveal
7. ?In Xcode, build and run your application using a scheme that is set to use the?Debug?configuration. If you are running your iOS application on a device, ensure that it is on the same Wi-Fi network as Mac running Reveal.?If everything worked, you should be able to switch to Reveal and see your iOS 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 (or device).
8. ?Run your application again, this time using a scheme set to use the?Release?configuration. Verify that Reveal cannot connect to your application. If you can still connect, check to make sure?Reveal.framework?is not listed in the?Link Binary With Libraries?section of the?Build Phases?tab.
标签:
原文地址:http://www.cnblogs.com/xclidongbo/p/4340872.html