123456789101112131415161718192021 |
- //
- // RQUncaughtExceptionHandler.h
- // TEST
- //
- // Created by 张嵘 on 2018/10/22.
- // Copyright © 2018 张嵘. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import <MessageUI/MFMailComposeViewController.h>
- static NSString * const kNotificationUncaughtException = @"kNotificationUncaughtException";
- @interface RQUncaughtExceptionHandler : NSObject<MFMailComposeViewControllerDelegate>
- + (void)setDefaultHandler;
- + (NSUncaughtExceptionHandler *)getHandler;
- + (void)TakeException:(NSException *) exception;
- @end
|