views:

39

answers:

3

Is it possible to invoke an app automatically when it encounters a crash in iPhone/iPad? If so, any pointers will certainly help. Thanks!

+1  A: 

That's not possible so design your app NOT to crash instead :)

willcodejavaforfood
A: 

I've not tried this, but there's a reasonable chance you can run code when the app crashes by installing signal handlers in the standard C way for SIGABRT, SIGSEGV, etc.

However I have no idea how you'd make your app relaunch.

As others have said, the best approach is to stop your app crashing - that's what everyone else does.

JosephH
Actually, it's what everyone else *tries* to do.
JeremyP
A: 

Its not possible.

Warrior