Http://try.crashlytics.com
Crashlytics Advantages:
1.Crashlytics basically does not miss any information that the app crashes
2.Crashlytics for crash log management is very user-friendly, will be prioritized according to the number of crashes, but also display related crash information (including device information, etc.)
3. Can be customized to send to the mailbox
Crashlytics Installation and Deployment:
1. After registering an account, log in to select Apple and go to the following page
Select Engineering-->next
Installing Crashlytics and Answers
Follow the prompts to add a run script Bulid Phase: Project->bulid phase-> Upper left corner + number->new Run script Phase
Then copy the above Crashlytics string to the inside, then compile the project and crashlytic into:
Drag the file below the project (contains Fabric.framework and crashlytics.framework two files)
: Include references and code in the APPDELEGATE.M file
#import <Fabric/Fabric.h>
#import <Crashlytics/Crashlytics.h>
Add The following code to the Didfinishlaunchingwithoptions method:
[Fabric With:@[[crashlytics class]];
And then we can.
iOS Crash logging tool--crashlytics