RAExceptionHandler.h 377 B

123456789101112131415161718
  1. //
  2. // LPExceptionHandler.h
  3. // Mach-O UUID
  4. //
  5. // Created by Jack on 2018/8/1.
  6. // Copyright © 2018年 USAI. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. /**
  10. * @brief 收集Crash信息,分析参考https://github.com/answer-huang/dSYMTools
  11. */
  12. @interface RAExceptionHandler : NSObject
  13. + (void)registHandler:(void (^)(NSString *exceptionStr)) handler;
  14. @end