| 123456789101112131415161718192021222324 |
- //
- // MOMentionTextView.h
- // MiMoLive
- //
- // Created by SuperC on 2024/6/18.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface MOMentionTextView : UITextView
- @property (nonatomic, copy) void (^sendTextBlock)(void);
- //高亮 @逻辑
- - (void)highlightMentions;
- //清空富文本
- - (void)cleanTheNSAttributedString;
- @end
- NS_ASSUME_NONNULL_END
|