Breakpoint Debug proper usage iOS? -
i put breakpoint. used command ⌥⌘-click on breakpoint.
it showed me following options.
how can use these options.
1. applescript 2. capture gpu frame 3. debugger command 4. log message 5. shell command 6. sound
there other options
1. condition 2. ignore 3. action 4. options
what these options. how working?
you can read detailed tutorial on breakpoints options: https://www.bignerdranch.com/blog/xcode-breakpoint-wizardry/
short summary:
- condition: if condition evaluated true, breakpoint triggered.
- ignore self explaining. "ignore first 2 passes".
- action: if breakpoint triggered.
- options: set if not want stop on breakpoint in xcode
for action field can choose when breakpoint triggered. possible values is:
- applescript: execute entered applescript code
- capture gpu frame: capture opengl frame contents
- debugger command: execute entered gdb command
- log message: log entered message console
- shell command: execute entered shell command
- sound: play sound file
Comments
Post a Comment