美文网首页Ios
异常处理

异常处理

作者: iYeso | 来源:发表于2016-08-02 00:21 被阅读0次

一:异常处理

#######1.1 一般处理方式:
a.app异常闪退,那么捕获crash信息,并记录在本地沙盒中。
b.当下次用户重新打开app的时候,检查沙盒中是否保存有上次捕获到的crash信息。
c.如果有那么利用专门的接口发送给服务器,以求在后期版本中修复。

#######1.2 如何抛出异常

//抛出异常的两种方式
// @throw  [NSException exceptionWithName:@"好大一个bug" reason:@"异常原因:我也不知道" userInfo:nil];

//方式二
NSString *info = [NSString stringWithFormat:@"%@方法找不到",NSStringFromSelector(aSelector)];
//下面这种方法是自动抛出的
[NSException raise:@"这是一个异常" format:info,nil];

#######1.3 如何捕获异常

NSSetUncaughtExceptionHandler (&UncaughtExceptionHandler);

void UncaughtExceptionHandler(NSException *exception) {
    NSArray *arr = [exception callStackSymbols];//得到当前调用栈信息
    NSString *reason = [exception reason];//非常重要,就是崩溃的原因
    NSString *name = [exception name];//异常类型

    NSString *errorMsg = [NSString stringWithFormat:@"当前调用栈的信息:%@\nCrash的原因:%@\n异常类型:%@\n",arr,reason,name];
    //把该信息保存到本地沙盒,下次回传给服务器。
}

二: 异常处理

#######2.1 一般处理方式:

  • a.app异常闪退,那么捕获crash信息,并记录在本地沙盒中。
  • b.当下次用户重新打开app的时候,检查沙盒中是否保存有上次捕获到的crash信息。
  • c.如果有那么利用专门的接口发送给服务器,以求在后期版本中修复。

#######2.2 如何抛出异常

抛出异常的两种方式

@throw  [NSException exceptionWithName:@"好大一个bug" reason:@"异常原因:我也不知道" userInfo:nil];

方式二

NSString *info = [NSString stringWithFormat:@"%@方法找不到",NSStringFromSelector(aSelector)];
下面这种方法是自动抛出的
[NSException raise:@"这是一个异常" format:info,nil];

03 如何捕获异常

NSSetUncaughtExceptionHandler (&UncaughtExceptionHandler);

void UncaughtExceptionHandler(NSException *exception) {
    NSArray *arr = [exception callStackSymbols];得到当前调用栈信息
    NSString *reason = [exception reason];非常重要,就是崩溃的原因
    NSString *name = [exception name];异常类型
    
    NSString *errorMsg = [NSString stringWithFormat:@"当前调用栈的信息:%@\nCrash的原因:%@\n异常类型:%@\n",arr,reason,name];
    把该信息保存到本地沙盒,下次回传给服务器。
}

void UncaughtExceptionHandler(NSException *exception) {
    
    获取异常崩溃信息
     
    NSArray *callStack = [exception callStackSymbols];
    NSString *reason = [exception reason];
    NSString *name = [exception name];
    NSString *content = [NSString stringWithFormat:@"========异常错误报告========\nname:%@\nreason:\n%@\ncallStackSymbols:\n%@",name,reason,[callStack componentsJoinedByString:@"\n"]];
    
    
    把异常崩溃信息发送至开发者邮件
     
    NSMutableString *mailUrl = [NSMutableString string];
    [mailUrl appendString:@"mailto:test@qq.com"];
    [mailUrl appendString:@"?subject=程序异常崩溃,请配合发送异常报告,谢谢合作!"];
    [mailUrl appendFormat:@"&body=%@", content];
     打开地址
    NSString *mailPath = [mailUrl stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:mailPath]];
}

http://blog.csdn.net/wkx5kl/article/details/46723451

相关文章

网友评论

    本文标题:异常处理

    本文链接:https://www.haomeiwen.com/subject/barfsttx.html