iOS開發中捕獲Crash 發送Bug郵件

來源:互聯網
上載者:User

在開發過程中,我們有時候會留下Bug,使用者在使用我們的app 的時候,有時會出現閃退,這時候我們可以讓使用者給我們發送郵件,以讓我們開發人員更加快速的地位到Bug的所在,以最快的時間解決,同時也提高使用者體驗。

       在AppDelegate.m檔案中,添加如下代碼:


view source print?01 NSUncaughtExceptionHandler* _uncaughtExceptionHandler = nil;

02 void UncaughtExceptionHandler(NSException *exception) {

03     NSLog(@"CRASH: %@", exception);

04     NSLog(@"Stack Trace: %@", [exception callStackSymbols]);

05      

06     // 異常的堆棧資訊

07     NSArray *stackArray = [exception callStackSymbols];

08     // 出現異常的原因

09     NSString *reason = [exception reason];

10     // 異常名稱

11     NSString *name = [exception name];

12      

13     NSString *syserror = [NSString stringWithFormat:@"mailto://787887347@qq.com?subject=bug報告&body=感謝您的配合!<br><br><br>"

14                           "Error Detail:<br>%@<br>--------------------------<br>%@<br>---------------------<br>%@",

15                           name,reason,[stackArray componentsJoinedByString:@"<br>"]];

16      

17     NSURL *url = [NSURL URLWithString:[syserror stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];

18     [[UIApplication sharedApplication] openURL:url];

19     return;

20 }
   然後在 - ( BOOL )application:( UIApplication *)application didFinishLaunchingWithOptions:( NSDictionary *)launchOptions方法中添加一下代碼:

1 // 儲存系統處理異常的Handler

2     _uncaughtExceptionHandler = NSGetUncaughtExceptionHandler();

3      

4     // 設定處理異常的Handler

5     NSSetUncaughtExceptionHandler(&UncaughtExceptionHandler);
    那麼在我們的應用程式遇到閃退的時候,就會幫使用者開啟發送郵件功能。 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.