APP的crash反馈机制对APP的好处不言而喻,近期项目里面也加入了。
方法一:
苹果给我们提供了异常处理的类,NSException类。这个类可以创建一个异常对象,也可以通过这个类获取一个异常对象。
这个类中我们最常用的还是一个获取崩溃信息的C函数,我们可以通过这个函数在程序发生异常的时候收集这个异常,即将崩溃信息存入沙盒里的指定文件下。
创建一个类NdUncaughtExceptionHandler
@interface NdUncaughtExceptionHandler : NSObject
+ (void)setDefaultHandler;
+ (NSUncaughtExceptionHandler*)getHandler;
@end
#import "NdUncaughtExceptionHandler.h"
#import
NSString *applicationDocumentsDirectory() {
return [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject];
}
void UncaughtExceptionHandler(NSException *exception) {
NSArray *arr = [exception callStackSymbols];
NSString *reason = [exception reason];
NSString *name = [exception name];
NSString *appName = [NSBundle mainBundle].infoDictionary[@"CFBundleDisplayName"];
NSString *currentVersion = [NSBundle mainBundle].infoDictionary[@"CFBundleShortVersionString"];
NSString *strSysVersion = [[UIDevice currentDevice] systemVersion];
NSLog(@"系统版本号:%@", strSysVersion);// e.g. @"4.0"
// NSString* phoneModel = [[UIDevice currentDevice] model];
NSString *phoneModel = [[NSUserDefaults standardUserDefaults] objectForKey:PHONETYPE];
NSLog(@"手机型号: %@",phoneModel ); //手机型号
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat: @"yyyy-MM-dd HH:mm:ss"];
NSString *timeBug = [dateFormatter stringFromDate:[NSDate date]];
NSString *url = [NSString stringWithFormat:@"=============异常崩溃报告=============\n时间:%@\n手机型号: %@\n系统版本号:%@\nAPP名称及版本号:%@ Version:%@ \nname:%@\nreason:\n%@\ncallStackSymbols:\n%@",timeBug,phoneModel,strSysVersion,appName,currentVersion,
name,reason,[arr componentsJoinedByString:@"\n"]];
NSString *path = [applicationDocumentsDirectory() stringByAppendingPathComponent:@"Exception.txt"];
[url writeToFile:path atomically:YES encoding:NSUTF8StringEncoding error:nil];
//除了可以选择写到应用下的某个文件,通过后续处理将信息发送到服务器等
//还可以选择调用发送邮件的的程序,发送信息到指定的邮件地址
//或者调用某个处理程序来处理这个信息
}
@implementation NdUncaughtExceptionHandler
-(NSString *)applicationDocumentsDirectory {
return [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject];
}
+ (void)setDefaultHandler
{
NSSetUncaughtExceptionHandler (&UncaughtExceptionHandler);
}
+ (NSUncaughtExceptionHandler*)getHandler
{
return NSGetUncaughtExceptionHandler();
}
使用起来也很简单AppDelegate引入后
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
[NdUncaughtExceptionHandler setDefaultHandler]; // 友情提示:如果不是storyboard 请把代码放 [self.window makeKeyAndVisible]之后
return YES;
}
随后随便找个Crash的代码比如数组越界什么的测试一下
生成的Crash报告被放在沙盒里DOCM下的文件内,可以直接获取查看
NSString *path = [[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject] stringByAppendingPathComponent:@"Exception.txt"];
NSString *contentString = [NSString stringWithContentsOfFile:path encoding:NSUTF8StringEncoding error:nil];
当然和后台约定好怎么传到服务器就行了,上传成功后我就直接把Crash报告删除了
-(void)deleteFile {
NSFileManager* fileManager=[NSFileManager defaultManager];
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask, YES);
//文件名
NSString *uniquePath=[[paths objectAtIndex:0] stringByAppendingPathComponent:@"Exception.txt"];
BOOL blHave=[[NSFileManager defaultManager] fileExistsAtPath:uniquePath];
if (!blHave) {
NSLog(@"no have");
return ;
}else {
NSLog(@" have");
BOOL blDele= [fileManager removeItemAtPath:uniquePath error:nil];
if (blDele) {
NSLog(@"dele success");
}else {
NSLog(@"dele fail");
}
}
}
崩溃信息展示如下:
=============异常崩溃报告=============
手机型号: iPhone
系统版本号:10.1.1
APP名称及版本号:
LittleVoiceWithFun :1.0
name:
NSRangeException
reason:
*** -[__NSArrayI objectAtIndex:]: index 3 beyond bounds [0 .. 1]
callStackSymbols:
0 CoreFoundation 0x00000001883e61d8 + 148
1 libobjc.A.dylib 0x0000000186e2055c objc_exception_throw + 56
2 CoreFoundation 0x00000001882c2584 CFRunLoopRemoveTimer + 0
3 LittleVoiceWithFun 0x000000010010226c -[OneViewController touchesBegan:withEvent:] + 208
4 UIKit 0x000000018e3d4e84 + 336
5 UIKit 0x000000018e3d4d20 + 60
6 UIKit 0x000000018e2755ec + 1928
7 UIKit 0x000000018e270a60 + 2988
8 UIKit 0x000000018e24152c + 340
9 UIKit 0x000000018ea2ea54 + 2736
10 UIKit 0x000000018ea284bc + 784
11 CoreFoundation 0x0000000188394278 + 24
12 CoreFoundation 0x0000000188393bc0 + 524
13 CoreFoundation 0x00000001883917c0 + 804
14 CoreFoundation 0x00000001882c0048 CFRunLoopRunSpecific + 444
15 GraphicsServices 0x0000000189d46198 GSEventRunModal + 180
16 UIKit 0x000000018e2ac2fc + 684
17 UIKit 0x000000018e2a7034 UIApplicationMain + 208
18 LittleVoiceWithFun 0x0000000100102b68 main + 124
19 libdyld.dylib 0x00000001872a45b8 + 4
------------
方法二:
第二种方法就相当简单了,使用个第三方Crashlytics
去官网注册账号https://fabric.io 下载个客户端,集成特别简单,登陆账号后根据提示一步步操作。全英文哦!(在客户端有选择工程这一步,如果使用了cocoapods,就选择.xcworkspace这个启动文件)
pod 'Fabric', '~> 1.6.11'
pod 'Crashlytics', '~> 3.8.3' // 最新3.8.5,cocoapods暂没有
配置过程中提示要复制粘贴类似下面一拖东西,
./Fabric.framework/run 666d32dbaf8bc593c3790dc2834deec50ee6a666 04a6d2c5acd2d955d5896fe4f0d67701f6ee00c78b0304a46b13e46326b27
在TARGETS -->Build Phases -->添加一项Run Script --> 粘贴在shell中
剩下的按照提示操作就行了。
在APPDelegate中
#import
#import
[Fabric with:@[[Crashlytics class]]];
测试一个Crash,他们会直接给你发送注册的邮箱。Good Luck