Reputation: 1365
Does anyone know why when stopping a program running in the iPhone/iPad simulator in Xcode you always get an error on the debug console of the following format:
2/2/12 6:09:36.973 PM SpringBoard: Application '<Application Name>' exited abnormally with signal 9: Killed: 9
How do you exit the program normally? The only reason I ask is because it's pretty annoying sorting through output to the console between application runs with these messages clogging everything up.
Upvotes: 1
Views: 260
Reputation: 4610
I believe that this is an Xcode 4 bug. I usually get an error telling me that my application exited abnormally or I'll get a SIGTERM/SIGABRT on the main function in main.m which is especially annoying because it switches my code editor to the main.m file.
Upvotes: 1