You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
388 B
31 lines
388 B
1 year ago
|
//
|
||
|
// 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
|