Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I catch global exceptions?

Is there a way to catch global "crashing" app exceptions like objc_exception_throw, EXC_ARITHMETIC etc. in code? I need that because I want to do some things before the app gets killed by the system.

like image 409
cocoapriest Avatar asked Dec 28 '22 17:12

cocoapriest


1 Answers

You can set a handler for any uncaught exception by using NSSetUncaughtExceptionHandler.

The relevant docs from Apple are here: http://developer.apple.com/mac/library/documentation/cocoa/conceptual/Exceptions/Concepts/UncaughtExceptions.html#//apple_ref/doc/uid/20000056-BAJDDGGD

like image 128
pgb Avatar answered Jan 03 '23 06:01

pgb