Foxit PDF SDK  9.1
MvMenuItem.h
1 
18 #import <Foundation/Foundation.h>
19 #import <UIKit/UIKit.h>
20 
21 @protocol IMvCallback;
23 @interface MvMenuItem : NSObject
25 @property (nonatomic, assign) NSUInteger tag;
27 @property (nonatomic, strong) NSString *text;
29 @property (nonatomic, assign) NSInteger iconId;
31 @property (nonatomic, assign) BOOL enable;
33 @property (nonatomic, weak) id<IMvCallback> callBack;
35 @property (nonatomic, strong) UIView *customView;
36 
37 @end
MvMenuItem
Definition: MvMenuItem.h:24
MvMenuItem::callBack
id< IMvCallback > callBack
Definition: MvMenuItem.h:33
MvMenuItem::tag
NSUInteger tag
Definition: MvMenuItem.h:25
MvMenuItem::customView
UIView * customView
Definition: MvMenuItem.h:35
MvMenuItem::iconId
NSInteger iconId
Definition: MvMenuItem.h:29
MvMenuItem::enable
BOOL enable
Definition: MvMenuItem.h:31
MvMenuItem::text
NSString * text
Definition: MvMenuItem.h:27