如何用断点导航器中的定义替换NSUncaughtExceptionHandler?

时间:2015-07-17 08:21:34

标签: ios xcode swift breakpoints nsexception

到目前为止,我在代码中使用了void uncaughtExceptionHandler(NSException *exception) { NSLog(@"*************************************************"); NSLog(@"CRASH: %@", exception); NSLog(@"Stack Trace: %@", [exception callStackSymbols]); NSLog(@"*************************************************"); } NSUncaughtExceptionHandler *exceptionHandlerPtr = &uncaughtExceptionHandler;

NSUncaughtExceptionHandler

我知道在Xcode中我可以为所有异常添加例外断点

enter image description here

然后我可以编辑断点

enter image description here

最后我不知道如何配置它来替换{​​{1}}中的代码。

enter image description here

1 个答案:

答案 0 :(得分:4)