20 lines
370 B
Objective-C
20 lines
370 B
Objective-C
//
|
|
// IfishUncaughtExceptionHandler.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 17/2/28.
|
|
// Copyright © 2017年 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
//崩溃日志
|
|
@interface IfishUncaughtExceptionHandler : NSObject
|
|
|
|
+(void)setDefaultHandler;
|
|
|
|
+(NSUncaughtExceptionHandler *)getHandler;
|
|
+(void)TakeException:(NSException *)exception;
|
|
|
|
@end
|