bugly crash统计和分析

1,官网 https://bugly.qq.com/v2/crash-reporting/crashes/4ea154f304?pid=2

新建一个产品 需要一个appid

2,集成pod 'Bugly' 

在appdelegate里面实例化

#import <Bugly/Bugly.h>

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

    [Bugly startWithAppId:@"4ea154f304"];//这个是官网新建产品的appid

}

注:测试的时候真机不能连着xcode

原文地址:https://www.cnblogs.com/liaolijun/p/7815819.html