0
你們誰都知道我怎麼能從iOS應用程序記錄任何崩潰異常?iOS:記錄任何崩潰異常
我逼崩潰在我的viewController:
- (void)viewDidLoad {
[super viewDidLoad];
NSArray *myArray = [NSArray new];
NSLog(@"%@", [myArray objectAtIndex:0]);
}
,我試圖捕捉在控制檯中墜毀在我的AppDelegate:
void uncaughtExceptionHandler(NSException *exception) {
NSLog(@"CRASH: %@", exception);
NSLog(@"Stack Trace: %@", [exception callStackSymbols]);
}
void SignalHandler(int sig) {
NSLog(@"CRASH: %d",sig);
}
但這並沒有工作。你們誰都知道如何在iOS中註冊任何崩潰的異常?
我實現NSSetUncaughtExceptionHandler(&的UncaughtExceptionHandler);和工作。但如何記錄輸出日誌? – user2924482