vote up 1 vote down star

I have just discovered the nifty unhandled exception handler for cocoa-touch. Now that i can gracefully notify the user about any unhandled exceptions that might crash my application. I'd like to shut down my application after notifying the user that a crash has occured. Does anyone know how to shut down an application programmatically?

flag

68% accept rate
Can you post a link for the unhandled exception handler? I haven't seen that yet. – Mike McMaster Oct 28 '08 at 6:03
restoroot.com/Blog/2008/… – Lounges Oct 28 '08 at 6:18

3 Answers

vote up 4 vote down check

You can call [[UIApplication sharedApplication] terminate]; - that won't build the screenshot Springboard uses to animate the application's exit, though, so the screen will just go black until the icons move in. There doesn't seem to be a published way to do this; the UIApplication header doesn't even mention the -terminate method, so you may just not be meant to do it at all.

link|flag
vote up 1 vote down
exit(0);

will do the trick...

link|flag
vote up 0 vote down

Apple's documentation says there is no "normal" way to shut down. In your case - an unhandled exception - immediate termination makes sense anyway.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.