Question:
Everytime I close my iOS app in the emulator, a tab called AppDelegate pops out, I find this annoying, how do I disable it?Answer:
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.
If you have better answer, please add a comment about this, thank you!