Files
midi_ios/TUIKit/TUIChat/UI_Classic/Input/TUIResponderTextView.h

22 lines
435 B
C
Raw Normal View History

2025-08-14 10:07:49 +08:00
//
// 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