22 lines
435 B
C
22 lines
435 B
C
|
|
//
|
||
|
|
// 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;
|
||
|
|
@end
|