zoukankan      html  css  js  c++  java
  • ios捕获异常并发送图片,便于解决bug

    在开发过程中,我们有时候会留下Bug,用户在使用我们的app 的时候,有时会出现闪退,这时候我们能够让用户给我们发送邮件,以让我们开发者更加高速的地位到Bug的所在。以最快的时间解决。同一时候也提高用户体验。

           在AppDelegate.m文件里,加入例如以下代码:

    01 NSUncaughtExceptionHandler* _uncaughtExceptionHandler = nil;
    02 void UncaughtExceptionHandler(NSException *exception) {
    03     NSLog(@"CRASH: %@", exception);
    04     NSLog(@"Stack Trace: %@", [exception callStackSymbols]);
    05      
    06     // 异常的堆栈信息
    07     NSArray *stackArray = [exception callStackSymbols];
    08     // 出现异常的原因
    09     NSString *reason = [exception reason];
    10     // 异常名称
    11     NSString *name = [exception name];
    12      
    13     NSString *syserror = [NSString stringWithFormat:@"mailto://75092731@qq.com?subject=bug报告&body=感谢您的配合!<br><br><br>"
    14                           "Error Detail:<br>%@<br>--------------------------<br>%@<br>---------------------<br>%@",
    15                           name,reason,[stackArray componentsJoinedByString:@"<br>"]];
    16      
    17     NSURL *url = [NSURL URLWithString:[syserror stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
    18     [[UIApplication sharedApplication] openURL:url];
    19     return;
    20 }
       然后在 - ( BOOL )application:( UIApplication *)application didFinishLaunchingWithOptions:( NSDictionary *)launchOptions方法中加入一下代码:

    1 // 保存系统处理异常的Handler
    2     _uncaughtExceptionHandler = NSGetUncaughtExceptionHandler();
    3      
    4     // 设置处理异常的Handler
    5     NSSetUncaughtExceptionHandler(&UncaughtExceptionHandler);
  • 相关阅读:
    pip install selenium==版本号 报错
    解决phantomjs输出中文乱码
    phantomjs学习之网页访问测速
    phantomjs学习之截图
    bzoj1069-最大土地面积
    hdu4372-Count the Buildings
    bzoj3786-星系探索
    Codeforces633H-Fibonacci-ish II
    hdu3625-Rooms
    斯特林数
  • 原文地址:https://www.cnblogs.com/yxwkf/p/5132689.html
Copyright © 2011-2022 走看看