void exceptionHandler(NSException *exception) {
/*
LOG関数は コンソールログを出力する関数 DEBUG時にとても有効です。
別エントリーで解説します。
*/
// 不正終了した箇所を示す スタックトレースをコンソールログに出力する
NSLog(@"stackSymbols:%@", [exception callStackSymbols]);
}
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
NSSetUncaughtExceptionHandler(&exceptionHandler);
return YES;
}
Why not register and get more from Qiita?
- We will deliver articles that match you
By following users and tags, you can catch up information on technical fields that you are interested in as a whole
- you can read useful information later efficiently
By "stocking" the articles you like, you can search right away
Sign upLogin