MOMentionTextView.h 362 B

123456789101112131415161718192021222324
  1. //
  2. // MOMentionTextView.h
  3. // MiMoLive
  4. //
  5. // Created by SuperC on 2024/6/18.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface MOMentionTextView : UITextView
  10. @property (nonatomic, copy) void (^sendTextBlock)(void);
  11. //高亮 @逻辑
  12. - (void)highlightMentions;
  13. //清空富文本
  14. - (void)cleanTheNSAttributedString;
  15. @end
  16. NS_ASSUME_NONNULL_END