How to disable debug mode on the playground?

I wanted to disable debug mode on the Xcode 6 playground, but I can’t find how to do this. Is it possible at all?

+4
source share
1 answer

Well, I could not find any official sources for what I am writing now; but how can a playground work without debugging?

The playground does not just execute your application, and then shows the results and does not execute your application step by step.

Xcode uses JIT compilation (just in time, Swift needs to be compiled) for your code (and each change), and then executes your binary and shows some information about your code that it finds useful.

, - , .

, .

, , .

+1

All Articles