18 lines
298 B
Objective-C
18 lines
298 B
Objective-C
//
|
|
// AvoidCrashProtocol.h
|
|
// https://github.com/chenfanfang/AvoidCrash
|
|
//
|
|
// Created by chenfanfang on 2017/7/22.
|
|
// Copyright © 2017年 chenfanfang. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
@protocol AvoidCrashProtocol <NSObject>
|
|
|
|
@required
|
|
+ (void)avoidCrashExchangeMethod;
|
|
|
|
@end
|