Files
2023-04-10 18:48:16 +08:00

31 lines
388 B
Objective-C
Executable File

//
// IMOBFPlugin.h
// MOBFoundation
//
// Created by fenghj on 15/6/2.
// Copyright (c) 2015年 MOB. All rights reserved.
//
#import <Foundation/Foundation.h>
/**
* 插件协议
*/
@protocol IMOBFPlugin <NSObject>
@required
/**
* 插件加载时调用
*
* @param key 插件标识
*/
- (void)load:(NSString *)key;
/**
* 插件卸载时调用
*/
- (void)unload;
@end