123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- //
- // XYLiveRoomChatInputView.h
- // Starbuds
- //
- // Created by pajia on 2020/1/7.
- // Copyright © 2020 翟玉磊. All rights reserved.
- //
- #import "BaseView.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface XYLiveRoomChatInputView : UIView
- ///输入完成时回调
- @property (nonatomic, copy) void(^XYLiveMessageManagerBlock)(NSDictionary *dataDict);
- /// 键盘隐藏回调
- @property (nonatomic, copy) void(^XYLiveRoomChatInputViewStatusBlock )(BOOL show , float height);
- /// 头条房间点击表情按钮事件
- @property (nonatomic, copy) void(^XYLiveRoomChatInputViewEmojiBntBlock)(NSInteger index);
- ///@小明
- @property (nonatomic, readwrite, strong) NSString *aiteName;
- ///aite人id
- @property (nonatomic, readwrite, strong) NSString *aiteUserId;
- ///房间id
- @property (nonatomic, readwrite, strong) NSString *targetId;
- ///是否为输入礼物数量弹框
- @property (nonatomic, readwrite, assign) BOOL inputGiftNum;//
- ///全屏点击隐藏键盘
- @property (nonatomic, strong) UIView *hiddenView;
- ///文字输入
- @property (nonatomic, strong) UITextView *textView;
- ///头条房间表情按钮
- @property (nonatomic, strong) UIButton *emojiBtn;
- ///头条房间余额按钮
- @property (nonatomic, strong) UIButton *balanceBtn;
- ///头条房间是否为活动
- @property (nonatomic, assign) BOOL headLineActivity;//
- ///承载hiddenView的视图
- @property (nonatomic, readwrite, strong) UIView *showView;
- ///语音速配房间隐藏输入框
- - (void)quickMatchRoomHide;
- - (void)setup;
- - (void)clear;
- - (void)show;
- - (void)hide;
- @end
- NS_ASSUME_NONNULL_END
|