Home reveal usage
Post
Cancel

reveal usage

Load the Reveal Server via an Xcode Breakpoint

  1. In Reveal, open the Help menu and click Install Debugger Commands…

  2. Click Continue to finish the installation.

  3. Open your iOS or tvOS project in Xcode, and select View → Navigators → Show Breakpoint Navigator.

  4. In the bottom left of the pane, click the + button and select Symbolic Breakpoint…

  5. Enter UIApplicationMain into the Symbol field.

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

  7. Copy and paste the following command into the field below:

    1
    
    reveal load
    
  8. Check Automatically continue after evaluating actions.

  9. Right click the newly created breakpoint and select Move Breakpoint To → User.

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

Debugger on device

1
2
3
4
5
6
7
REVEAL_APP_PATH=$(mdfind kMDItemCFBundleIdentifier="com.ittybittyapps.Reveal2" | head -n 1)
BUILD_SCRIPT_PATH="${REVEAL_APP_PATH}/Contents/SharedSupport/Scripts/reveal_server_build_phase.sh"
if [ "${REVEAL_APP_PATH}" -a -e "${BUILD_SCRIPT_PATH}" ]; then
    "${BUILD_SCRIPT_PATH}"
else
    echo "Reveal Server not loaded: Cannot find a compatible Reveal app."
fi

References

破解包资源

support.revealapp.com

Reveal-Keyboard-Shortcuts-and-Modifiers

kodeco.com

1
2
3
1. 需要做app多端同步(涉及到车况推送:推送什么时候触发看实现,比如有车况上报就推给在线设备)
2. app主动拉取车况希望支持	a.拿云端最新数据; b.从车端拿最新数据
3. app主动拉取(配置的)车况希望支持 	a.拉部分车况  b. 拉全部车况 c.拉服务下全部车况 d.拉服务下部分车况
This post is licensed under CC BY 4.0 by the author.