成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

iOS中捕獲日志與異常示例詳解

前言

創(chuàng)新互聯(lián)網(wǎng)站建設公司一直秉承“誠信做人,踏實做事”的原則,不欺瞞客戶,是我們最起碼的底線! 以服務為基礎,以質(zhì)量求生存,以技術(shù)求發(fā)展,成交一個客戶多一個朋友!專注中小微企業(yè)官網(wǎng)定制,成都網(wǎng)站設計、網(wǎng)站制作,塑造企業(yè)網(wǎng)絡形象打造互聯(lián)網(wǎng)企業(yè)效應。

在平時自己調(diào)試的時候,可以直接連接電腦,直接在窗口中查看結(jié)果。但是在測試人員測試,或者灰度測試的時候,怎么才能拿到日志呢?最先想到的肯定是輸出到本地文件,然后在需要的時候進行上傳。

分享一段之前找到的方法,下面的代碼提供了兩個主要功能:

     – 把日志輸出到文件中

     – 捕捉異常信息

【解析都寫在注釋中了】

示例代碼

- (void)redirectNSLogToDocumentFolder
{
//如果已經(jīng)連接Xcode調(diào)試則不輸出到文件
//該函數(shù)用于檢測輸出 (STDOUT_FILENO) 是否重定向 是個 Linux 程序方法
if(isatty(STDOUT_FILENO)) {
return;
}

// 判斷 當前是否在 模擬器環(huán)境 下 在模擬器不保存到文件中
UIDevice *device = [UIDevice currentDevice];
if([[device model] hasSuffix:@"Simulator"]){
return;
}

//將NSlog打印信息保存到Document目錄下的Log文件夾下
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *logDirectory = [[paths objectAtIndex:0] stringByAppendingPathComponent:@"Log"];

NSFileManager *fileManager = [NSFileManager defaultManager];
BOOL fileExists = [fileManager fileExistsAtPath:logDirectory];
if (!fileExists) {
[fileManager createDirectoryAtPath:logDirectory withIntermediateDirectories:YES attributes:nil error:nil];
}

NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setLocale:[[NSLocale alloc] initWithLocaleIdentifier:@"zh_CN"]];
[formatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"]; //每次啟動后都保存一個新的日志文件中
NSString *dateStr = [formatter stringFromDate:[NSDate date]];
NSString *logFilePath = [logDirectory stringByAppendingFormat:@"/%@.log",dateStr];

// 將log輸入到文件
freopen([logFilePath cStringUsingEncoding:NSUTF8StringEncoding], "a+", stdout);
freopen([logFilePath cStringUsingEncoding:NSUTF8StringEncoding], "a+", stderr);

//未捕獲的Objective-C異常日志
NSSetUncaughtExceptionHandler (&UncaughtExceptionHandler);
}

之前看的時候,對 NSSetUncaughtExceptionHandler(&UncaughtExceptionHandler) 這個用法一知半解,去翻了一下源碼,這個方法是在 Foundation 中。

api 中的定義是Changes the top-level error handler ,Sets the top-level error-handling function where you can perform last-minute logging before the program terminates. 通過替換掉最高級別的 handle 方法,可以在程序終止之前可以獲取到崩潰信息,并執(zhí)行相應的操作,比如保存本地,或者上報。

方法調(diào)用為:

void NSSetUncaughtExceptionHandler(NSUncaughtExceptionHandler *);

傳入的是一個 NSUncaughtExceptionHandler 的指針。

typedef void NSUncaughtExceptionHandler(NSException *exception);

意思就是需要一個 返回 void 并且參數(shù)為 NSException *exception 的函數(shù)指針。

你想要,那我就給你!

所以下面有個 C 語言的函數(shù),你看這個寫法和 OC 的聲明也不一樣。

void UncaughtExceptionHandler(NSException* exception)
{
NSString* name = [ exception name ];
NSString* reason = [ exception reason ];
NSArray* symbols = [ exception callStackSymbols ]; // 異常發(fā)生時的調(diào)用棧
NSMutableString* strSymbols = [ [ NSMutableString alloc ] init ]; //將調(diào)用棧拼成輸出日志的字符串
for ( NSString* item in symbols )
{
[ strSymbols appendString: item ];
[ strSymbols appendString: @"\r\n" ];
}

//將crash日志保存到Document目錄下的Log文件夾下
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *logDirectory = [[paths objectAtIndex:0] stringByAppendingPathComponent:@"Log"];

NSFileManager *fileManager = [NSFileManager defaultManager];
if (![fileManager fileExistsAtPath:logDirectory]) {
[fileManager createDirectoryAtPath:logDirectory withIntermediateDirectories:YES attributes:nil error:nil];
}

NSString *logFilePath = [logDirectory stringByAppendingPathComponent:@"UncaughtException.log"];
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setLocale:[[NSLocale alloc] initWithLocaleIdentifier:@"zh_CN"]];
[formatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
NSString *dateStr = [formatter stringFromDate:[NSDate date]];

NSString *crashString = [NSString stringWithFormat:@"<- %@ ->[ Uncaught Exception ]\r\nName: %@, Reason: %@\r\n[ Fe Symbols Start ]\r\n%@[ Fe Symbols End ]\r\n\r\n", dateStr, name, reason, strSymbols];
//把錯誤日志寫到文件中
if (![fileManager fileExistsAtPath:logFilePath]) {
[crashString writeToFile:logFilePath atomically:YES encoding:NSUTF8StringEncoding error:nil];
}else{
NSFileHandle *outFile = [NSFileHandle fileHandleForWritingAtPath:logFilePath];
[outFile seekToEndOfFile];
[outFile writeData:[crashString dataUsingEncoding:NSUTF8StringEncoding]];
[outFile closeFile];
}

//把錯誤日志發(fā)送到郵箱
// NSString *urlStr = [NSString stringWithFormat:@"mailto://XXXXX@126.com?subject=bug報告&body=感謝您的配合!<br><br><br>錯誤詳情:<br>%@",crashString ];
// NSURL *url = [NSURL URLWithString:[urlStr stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
// [[UIApplication sharedApplication] openURL:url];
}

總結(jié)

以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對各位iOS開發(fā)者們能帶來一定的幫助,如果有疑問大家可以留言交流,謝謝大家對創(chuàng)新互聯(lián)的支持。

當前題目:iOS中捕獲日志與異常示例詳解
網(wǎng)頁鏈接:http://jinyejixie.com/article38/pgeopp.html

成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供網(wǎng)頁設計公司外貿(mào)網(wǎng)站建設、定制開發(fā)小程序開發(fā)、服務器托管、ChatGPT

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

成都app開發(fā)公司
扎鲁特旗| 武陟县| 乐清市| 阜南县| 屏东市| 斗六市| 二手房| 嘉义市| 蒙山县| 神农架林区| 肃南| 庆阳市| 丰镇市| 乌拉特后旗| 昆山市| 沁水县| 侯马市| 福泉市| 香河县| 绥宁县| 左云县| 苍山县| 通渭县| 哈尔滨市| 巴林右旗| 广昌县| 云梦县| 广州市| 凯里市| 皮山县| 漳浦县| 衡阳县| 德庆县| 平果县| 永顺县| 九江市| 延吉市| 太白县| 班戈县| 道孚县| 宝清县|