Код: Выделить всё
NSSetUncaughtExceptionHandler(&uncaughtExceptionHandler);
void uncaughtExceptionHandler(NSException *exception) {
NSLog(@"Exception description - %@",[exception description]);
NSLog(@"Exception name - %@", [exception name]);
NSLog(@"Reason - %@", [exception reason]);
NSLog(@"\n\n - %@", [exception callStackSymbols]);
NSLog(@"\n\n - %@", [exception callStackReturnAddresses]);
}
Подробнее здесь: https://stackoverflow.com/questions/346 ... d-also-the
Мобильная версия