Plugin for Xcode to integrate the Reveal App to your project automatic(Without any modifications to your project).
The Reveal Plugin works just like Instruments.
The Reveal app integrates directly into Xcode, so you don't need to add frameworks or modify your project to inspect your app in the iOS Simulator.
If you're in the middle of a debug session and something unexpected happens, you can attach Reveal to see what's going on. No restarting your app, no changing your project. All from inside Xcode.
###Via Alcatraz
Reveal-Plugin-for-XCode is available through the Alcatraz Xcode plugin management system.
From source
Simply build the Xcode project and restart Xcode. The plugin will automatically install to ~/Library/Application Support/Developer/Shared/Xcode/Plug-ins
.
To uninstall, just remove the plugin from the above directory, and restart Xcode:
rm -rf ~/Library/Application\ Support/Developer/Shared/Xcode/Plug-ins/RevealPlugin.xcplugin
Tested on Xcode 5.1 and Mac OS X 10.9.2.
find ~/Library/Application\ Support/Developer/Shared/Xcode/Plug-ins -name Info.plist -maxdepth 3 | xargs -I{} defaults write {} DVTPlugInCompatibilityUUIDs -array-add `defaults read /Applications/Xcode.app/Contents/Info DVTPlugInCompatibilityUUID`
- When using
Inspect ith Reveal
, if your simulator can't lanuch within 5 seconds, it's will alert an error. Thus, you can alse use Debug->Attach to Reveal
after your app launched.
Welcome to fork and PullRequest to do this better. We use issues to manage bugs and enhanced features.