Sign in

iOS Team / ScioLive · Files

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • ScioLive
  • ..
  • Headers
  • IMOBFPlugin.h
  • no message
    17196016
    zhangxiaowen authored
    2019-07-16 11:12:40 +0800  
    Browse Code »
IMOBFPlugin.h 388 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
//
//  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