| 1234567891011121314151617181920212223242526272829303132333435363738 |
- //
- // MOLiveMsgSendView.h
- // MiMoLive
- //
- // Created by SuperC on 2023/11/19.
- //
- #define MsgSendViewMinHeight (98.0) // 输入框的最小高度
- #import <UIKit/UIKit.h>
- #import "MOMentionTextView.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface MOLiveMsgSendView : UIView
- @property (weak, nonatomic) IBOutlet UIView *bgView;
- @property (weak, nonatomic) IBOutlet UISwitch *theSwitch;
- @property (weak, nonatomic) IBOutlet MOMentionTextView *inputTextView;
- @property (weak, nonatomic) IBOutlet BigBtn *sendBtn;
- /** @的数据 昵称为key, UserId 为值 */
- @property (nonatomic, strong) NSMutableDictionary *remindUserDict;
- @property (nonatomic, copy) void(^sendTextBlock)(NSString *msgText, BOOL isDanMu, NSDictionary *remindUserDict);
- + (instancetype)moLiveMsgSendView;
- /// 清空输入框
- - (void)clearInputTextViewText;
- @end
- NS_ASSUME_NONNULL_END
|