TUITextView.h 536 B

12345678910111213141516171819202122232425
  1. //
  2. // TUITextView.h
  3. // Masonry
  4. //
  5. // Created by xiangzhang on 2022/10/14.
  6. // Copyright © 2023 Tencent. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @protocol TUITextViewDelegate <NSObject>
  11. - (void)onLongPressTextViewMessage:(UITextView *)textView;
  12. @end
  13. @interface TUITextView : UITextView
  14. @property (nonatomic, strong) UILongPressGestureRecognizer *longPressGesture;
  15. @property (nonatomic, weak) id<TUITextViewDelegate> tuiTextViewDelegate;
  16. - (void)disableHighlightLink;
  17. @end
  18. NS_ASSUME_NONNULL_END