TUIResponderTextView.h 545 B

12345678910111213141516171819202122232425
  1. //
  2. // TResponderTextView.h
  3. // TUIKit
  4. //
  5. // Created by kennethmiao on 2018/10/25.
  6. // Copyright © 2018 Tencent. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class TUIResponderTextView;
  10. @protocol TUIResponderTextViewDelegate <UITextViewDelegate>
  11. - (void)onDeleteBackward:(TUIResponderTextView *)textView;
  12. @end
  13. @interface TUIResponderTextView : UITextView
  14. @property(nonatomic, weak) UIResponder *overrideNextResponder;
  15. @property(strong, nonatomic) NSString *placeHolder;
  16. @property(strong, nonatomic) UIColor *placeHolderColor;
  17. @end