충돌 메시지 알림 적용

1325 단어
NSSetUncaughtExceptionHandler를 이용하여 프로그램이 비정상적으로 종료될 때 지정된 메일박스에 메일을 보내는데 메일 내용에는 이상이 발생했을 때의 상세한 내용이 포함된다.코드는 다음과 같습니다.
 
void UncaughtExceptionHandler(NSException *exception) {
NSArray *arr = [exception callStackSymbols];
NSString *reason = [exception reason];
NSString *name = [exception name];
NSString *urlStr = [NSString stringWithFormat:@"mailto://[email protected]?subject=bug  &body=      !<br><br><br>"
"    :<br>%@<br>--------------------------<br>%@<br>---------------------<br>%@",
name,reason,[arr componentsJoinedByString:@"<br>"]];
NSURL *url = [NSURL URLWithString:[urlStr stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
[[UIApplication sharedApplication] openURL:url];
}

그리고
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
안쪽
함수에 추가
 
NSSetUncaughtExceptionHandler (&UncaughtExceptionHandler);

좋은 웹페이지 즐겨찾기