美文网首页iOS 开发 学习
ios 获取崩溃日志

ios 获取崩溃日志

作者: 零度_不结冰 | 来源:发表于2019-06-28 10:51 被阅读0次

    为了更好的维护iosAPP,处理程序崩溃是必需要做的,那么如何收集用户使用时出现的崩溃呢,基本的方法如下:

    1.上传appStore的app,可以通过iTunes Stroe获取

    2.利用Xcode获取。

    3. Crashlytics,Hockeyapp ,友盟,Bugly 等等。

    4.通过iOSSDK中提供了一个现成的函数 NSSetUncaughtExceptionHandler 用来做异常处理

    利用NSSetUncaughtExceptionHandler,当程序异常退出的时候,可以先进行处理,然后做一些自定义的动作,并通知开发者,是大多数软件都选择的方法。下面就介绍如何在iOS中实现:

    第一步:创建崩溃获取类crash

    .h文件

    @interface Crash : NSObject

     //// 崩溃时的回调函数

    void uncaughtExceptionHandler(NSException *exception);

    @end

    .m文件:

    #import "Crash.h"

    @implementation Crash

    void uncaughtExceptionHandler(NSException *exception){

     NSArray *stackArry= [exception callStackSymbols];

     NSString *reason = [exception reason];

     NSString *name = [exception name];

     NSString *exceptionInfo = [NSStringstringWithFormat:@"Exception name:%@\nException reatoin:%@\nException stack :%@",name,reason,stackArry];

     NSLog(@"%@",exceptionInfo);

     //保存到本地沙盒中

    [exceptionInfo writeToFile:[NSStringstringWithFormat:@"%@/Documents/eror.log",NSHomeDirectory()] atomically:YES encoding:NSUTF8StringEncoding error:nil];

    }

    @end

    第二步在Appdelegate中注册消息方法

    - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {

     self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];

     self.window.backgroundColor = [UIColor whiteColor];

     //注册消息处理函数的处理方法 

     NSSetUncaughtExceptionHandler(&uncaughtExceptionHandler);

     // 发送崩溃日志

     NSString *path = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject];

     NSString *dataPath = [path stringByAppendingPathComponent:@"Exception.txt"];

     NSData *data = [NSData dataWithContentsOfFile:dataPath];

     if (data != nil) {

    [self sendExceptionLogWithData:data path:dataPath];

        }

    }

    第三步:崩溃日志发动到服务器

    #pragma mark -- 发送崩溃日志

    - (void)sendExceptionLogWithData:(NSData *)data path:(NSString *)path {

     AFHTTPSessionManager *manager = [AFHTTPSessionManagermanager];

    manager.requestSerializer.timeoutInterval = 5.0f;

     //告诉AFN,支持接受 text/xml 的数据

    [AFJSONResponseSerializerserializer].acceptableContentTypes = [NSSetsetWithObject:@"text/plain"];

     NSString *urlString = @"后台地址";

    [manager POST:urlString parameters:nilconstructingBodyWithBlock:^(id _NonnullformData) {

    [formData appendPartWithFileData:data name:@"file"fileName:@"Exception.txt" mimeType:@"txt"];

    } success:^(NSURLSessionDataTask * _Nonnull task, id _Nonnull responseObject) {

     // 删除文件

     NSFileManager *fileManger = [NSFileManagerdefaultManager];

    [fileManger removeItemAtPath:path error:nil];

    } failure:^(NSURLSessionDataTask * _Nonnull task, NSError* _Nonnull error) {

        }];

    }

    一、如何获得crash日志

    当一个iOS应用程序崩溃时,系统会创建一份crash日志保存在设备上。这份crash日志记录着应用程序崩溃时的信息,通常包含着每个执行线程的栈调用信息(低内存闪退日志例外),对于开发人员定位问题很有帮助。

    如果设备就在身边,可以连接设备,打开Xcode - Window - Organizer,在左侧面板中选择Device Logs(可以选择具体设备的Device Logs或者Library下所有设备的Device Logs),然后根据时间排序查看设备上的crash日志。这是开发、测试阶段最经常采用的方式。

    如果应用程序已经提交到App Store发布,用户已经安装使用了,那么开发者可以通过iTunes Connect(Manage Your Applications - View Details - Crash Reports)获取用户的crash日志。不过这并不是100%有效的,而且大多数开发者并不依赖于此,因为这需要用户设备同意上传相关信息,详情可参见iOS: Providing Apple with diagnostics and usage information摘要。

    参考:

    https://blog.csdn.net/skylin19840101/article/details/52231397

    https://blog.csdn.net/yuhuashimyy/article/details/77505151

    相关文章

      网友评论

        本文标题:ios 获取崩溃日志

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