| 12345678910111213141516171819202122232425 |
- //
- // TResponderTextView.h
- // TUIKit
- //
- // Created by kennethmiao on 2018/10/25.
- // Copyright © 2018 Tencent. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class TUIResponderTextView;
- @protocol TUIResponderTextViewDelegate <UITextViewDelegate>
- - (void)onDeleteBackward:(TUIResponderTextView *)textView;
- @end
- @interface TUIResponderTextView : UITextView
- @property(nonatomic, weak) UIResponder *overrideNextResponder;
- @property(strong, nonatomic) NSString *placeHolder;
- @property(strong, nonatomic) UIColor *placeHolderColor;
- @end
|