Files
featherVoice/TUIKit/TUIChat/UI_Classic/Input/TUIResponderTextView.h
2025-08-08 10:49:36 +08:00

22 lines
435 B
Objective-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