LZBFaceView.h 650 B

12345678910111213141516171819
  1. //
  2. // LZBFaceView.h
  3. // LZBKeyBoardView
  4. //
  5. // demo地址:https://github.com/lzbgithubcode/LZBKeyBoardView.git
  6. // Created by zibin on 16/12/6.
  7. // Copyright © 2016年 apple. All rights reserved.
  8. //
  9. #import <UIKit/UIKit.h>
  10. #import "LZBEmojiModel.h"
  11. @interface LZBFaceView : UIView
  12. @property (nonatomic,copy) void (^animationEmojiBtnClickBlock)(void);
  13. @property (nonatomic,assign)BOOL isCurrentUserUpSeat;// 当前用户是否在座位上
  14. - (void)setEmojiModles:(NSArray <LZBEmojiModel *>*)emojiModles selectEmojiModelBlock:(void(^)(LZBEmojiModel*selectModel))selectBlock deleteBlcok:(void(^)())deleteBlcok sendBlcok:(void(^)())sendBlock;
  15. @end