Home > Back-end >  How do I disable xcode debug tab?
How do I disable xcode debug tab?

Time:06-17

Everytime I close my iOS app in the emulator, a tab called AppDelegate pops out, I find this annoying, how do I disable it?

CodePudding user response:

You could turn off the “Debug Executable” checkbox in your scheme—then Xcode won't debug your app at all. Probably not what you want.

Instead of quitting your app in the simulator, click the Stop button (the square) in the Xcode toolbar. This tells Xcode to kill your app, and it will automatically detach the debugger.

  • Related