QMChatRoomInputView.h 783 B

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // QMChatRoomInputView.h
  3. // IMSDK-OC
  4. //
  5. // Created by HCF on 16/3/9.
  6. // Copyright © 2016年 HCF. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface QMChatRoomInputView : UIView<UITextViewDelegate>
  10. @property (nonatomic ,strong)UITextView *inputView; // 输入栏
  11. @property (nonatomic ,strong)UIButton * voiceButton; // 声音按钮
  12. @property (nonatomic ,strong)UIButton * RecordBtn; // 录音按钮
  13. @property (nonatomic ,strong)UIButton * faceButton; // 表情按钮
  14. @property (nonatomic ,strong)UIButton * addButton; // 扩展按钮
  15. /**
  16. 录音按钮显示切换
  17. */
  18. - (void)showRecordButton: (BOOL)show;
  19. /**
  20. 表情面板显示切换
  21. */
  22. - (void)showEmotionView: (BOOL)show;
  23. /**
  24. 扩展面板显示切换
  25. */
  26. - (void)showMoreView: (BOOL)show;
  27. @end