What is the difference between Build and Go (Run) and Build and Run in Xcode?

What is the difference between Build and Go (Run) and Build and Run in Xcode? Why is this so ambiguous?

+3
source share
2 answers

Build and run will always be performed. Build and Go will load the debugger if necessary.

+2
source

If you just click "Build and Go" just like "Build and Run" ... any modified files are compiled and linked, then your application is done.

"Build and Go", , "Build and Run", "Build and Debug", Run Executable "" Debug Executable ". ( UI IMO:))

+1

Source: https://habr.com/ru/post/1712404/


All Articles