// // MoreBtnModel.h // OneCable // // Created by KaRam Kim on 2017. 3. 15.. // Copyright © 2017년 ntels. All rights reserved. // #import typedef enum { MasterTransfer = 90001, ReOrder, AddMember, NameChange, Add, Del, Refresh } MoreBtnType; @interface MoreBtnModel : NSObject @property (copy, nonatomic) UIImage *imgNormal; @property (copy, nonatomic) UIImage *imgHighlight; @property (copy, nonatomic) UIImage *imgDisabled; @property (assign, nonatomic) BOOL enable; @property (assign, nonatomic) BOOL show; @property (assign, nonatomic) MoreBtnType btnType; -(id)init; -(id)initWithTyep:(MoreBtnType)type isEnable:(BOOL)isEnabel; -(void)setBtnType:(MoreBtnType)type isEnable:(BOOL)isEnabel; //-(void)setBtnImage:(UIControlState)state imgName:(NSString *)name; - (UIImage *)getBtnImg:(UIControlState)state; - (BOOL)isEnable; - (BOOL)isShow; @end