// // ChatMoreView.h // BuguLive // // Created by 朱庆彬 on 2017/8/15. // Copyright © 2017年 xfg. All rights reserved. // #import #define kChatOtherViewHight 234.0f @protocol ChatMoreViewDelegate @optional - (void)chatMoreViewButton:(NSInteger)btnIndex; //点击了某个按钮 -(void)clickHide; @end /** * 更多view */ @interface ChatMoreView : UIView @property (nonatomic, strong) UIView *shadowView; - (void)show:(UIView *)superView; - (void)hide; @property (nonatomic, strong) NSMutableArray *btnArray; @property (nonatomic, weak) id delegate; - (void)initWithBtnArray:(NSMutableArray *)array; - (void)setGiftView:(BOOL)hidden; @end