到目前为止,我在代码中使用了void uncaughtExceptionHandler(NSException *exception) {
NSLog(@"*************************************************");
NSLog(@"CRASH: %@", exception);
NSLog(@"Stack Trace: %@", [exception callStackSymbols]);
NSLog(@"*************************************************");
}
NSUncaughtExceptionHandler *exceptionHandlerPtr = &uncaughtExceptionHandler;
:
NSUncaughtExceptionHandler
我知道在Xcode中我可以为所有异常添加例外断点:
然后我可以编辑断点:
最后我不知道如何配置它来替换{{1}}中的代码。
答案 0 :(得分:4)