# CrashLog **Repository Path**: chenjipdc/CrashLog ## Basic Information - **Project Name**: CrashLog - **Description**: iOS异常日志收集小工具 - **Primary Language**: Objective-C - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-10 - **Last Updated**: 2020-12-30 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # CrashLog ## How to use CrashLog? #### install ```objectivec pod 'CrashLog' ``` - - - #### like this ```objectivec @interface AppDelegate () @property (nonatomic, strong) RSCrashProfiler *profiler; @end - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { self.profiler = [RSCrashProfiler new]; [self.profiler start]; return YES; } ```