AppDelegate.m
例外をキャッチするために、次のコード スニペットを使用しています。
void uncaughtExceptionHandler(NSException *exception)
{
NSLog(@"CRASH: %@", exception);
NSLog(@"Stack Trace: %@", [exception callStackSymbols]);
}
この警告を回避するにはどうすればよいですか:
Semantic Issue: No previous prototype for function 'uncaughtExceptionHandler
'?