在我们项目的实际开发过程中,我们数据处理时经常会遇到由于人为或不可预知的行为,使一个值变为nil,这时候我们将这个值添加到数组或者字典中去,后果是灾难性的。一下崩溃日志相信大多数小伙伴都遇到过:
很明显,这是一个像可变数组中尝试添加元素的操作,可是此元素为nil,引起了崩溃。由此也引发了我们的思考,可否通过某种方法,规避掉这种崩溃。
1、向可变数组,字典中添加元素,进行if()else判断
这个方法不是不可以,但是对于一个项目来说,每次添加进行判断,是不科学的。代码进行了太多的重复性,意义低下的逻辑。
2、利用Object-C运行时的特点,当系统运行调用这个函数的时候我们可否进行一些操作。
下面我们就来看一下。首先从表面上看,应该是可以做到的具体如何做呢。首先我们给NSMutableArray建立一个分类。并引入#import <objc/runtime.h>。(本来想传图片,但是不知为何,上传不了。。。。上代码吧!!!)
#import "NSMutableArray+Extension.h"
#import <objc/runtime.h>
@implementationNSMutableArray (Extension)
+ (void)load
{
ClassarrayMClass =NSClassFromString(@"_ _NSArrayM");(这里是_ _NSArraysM,参考上图崩溃日志中-[__NSArrayM insertObject:atIndex:]这里牵扯到类簇的知识,感兴趣的小伙伴自行goole ----^_^-----)。
MethodaddObject =class_getInstanceMethod(arrayMClass,@selector(addObject:));
//获取我们自定义添加元素的方法
MethodnewAddObject =class_getInstanceMethod(arrayMClass,@selector(newAddObject:));
//将两个方法进行交换 (交换方法后:当你调用方法1,实际执行2。反之亦然。)
method_exchangeImplementations(newAddObject, addObject);
}
- (void)newAddObject:(id)anObject {
@try{
[selfnewAddObject:anObject];//其实就是调用addObject
}
@catch(NSException *exception) {
//能来到这里,说明可变数组添加元素的代码有问题
//你可以在这里进行相应的操作处理
NSLog(@"异常名称:%@ 异常原因:%@",exception.name, exception.reason);
}
@finally {
//在这里的代码一定会执行,你也可以进行相应的操作
}
}
@end
NSException的简单应用
在项目上传store后,我们肯定是希望得到程序异常崩溃时的信息,来改进自己App。当然我们可以集成友盟、百度等产品的bug分析工具。我们自己如何简单的实现这一功能呢。
NSException 可以用来捕获程序异常crash时的崩溃信息,在捕捉到的时候我们不能直接上传服务器 。因为上传的耗时操作,可能在程序crash后还尚未完成。我们这时可以将Exception信息保存本地。当下次程序打开时,我们来检测是否存在此文件,如果存在,我们将文件上传服务器,成功后,删除该文件。下面我们来看下代码实现。
首先我们需要全局捕获crash。
void UncaughtExceptionHandler(NSException*exception){
NSArray *excpArr = [exceptioncallStackSymbols];
NSString*reason = [exceptionreason];
NSString*name = [exceptionname];
NSDictionary* userInfo = [exceptionuserInfo];
NSString *excpCnt = [NSString stringWithFormat:@"exceptionType: %@ \n reason: %@ \n stackSymbols: %@ \n userInfo: %@",name,reason,excpArr,userInfo];
//NSTemporaryDirectory()是沙盒路径,这里我存在了temp文件下。
NSString * errorMessageFile = [NSString stringWithFormat:@"%@/error.txt",NSTemporaryDirectory()];
//将崩溃信息写入沙盒里的error.txt文件
[excpCntwriteToFile:errorMessageFile atomically:YES encoding:NSUTF8StringEncoding error:nil];
}
在AppDelegate中- (BOOL)application:(UIApplication*)application didFinishLaunchingWithOptions:(NSDictionary*)launchOptions方法调用NSSetUncaughtExceptionHandler(&UncaughtExceptionHandler);每次程序打开时,我们运行下面代码:
NSString * errorMessageFile = [NSString stringWithFormat:@"%@/error.txt",NSTemporaryDirectory()];
if ([[NSFileManager defaultManager] fileExistsAtPath:errorMessageFile]) {
//在这里文件进行上传操作
NSData*data = [NSDatadataWithContentsOfFile:errorMessageFile];
NSLog(@"%@",[[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding]);
[ [NetManager Share] putURL:@"******"
file:errorMessageFile
success:^(idresponseData) {
//上传成功 , 删除errorMessageFile
BOOL blDele= [fileManager removeItemAtPath:errorMessageFile error:nil];
if (blDele) {
NSLog(@"delete success");
}else {
NSLog(@"delete fail");
}
}
failure:^(NSString*errorMessage) {
[self.logInViewshowErrorLabelWithMessage:@"* 网络连接错误,请重试"];
} ]
};
网友评论