In XCode 6 how can you set a watchpoint without stopping execution?
You can easily set a watchpoint in XCode by following these steps (btw if there is a simpler way, I'd like to know it...): - Run your program - Set a breakpoint in the code where your variable is used - when reaching breakpoint, use a right click on the variable and select 'Watch "nameOfTheVariable"' - Continue execution. The only problem is that execution will stop every time the variable value changes. I would like XCode to continue the execution without stopping, i.e. merely display the value changes in the console output. This feature seems available in command line mode, and although I