Files
midi_ios/TUIKit/TUIVoiceToTextPlugin/UI/UI/TUIVoiceToTextView.h

26 lines
719 B
C
Raw Normal View History

2025-08-14 10:07:49 +08:00
// Created by Tencent on 2023/08/17.
// Copyright © 2023 Tencent. All rights reserved.
/**
* TUIVoiceToTextView
*
*
* When you long press the sound messages, you can choose to convert it to text.
* VoiceToText view will be displayed below the message bubble showing the converted text.
*/
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@class TUIMessageCellData;
@interface TUIVoiceToTextView : UIView
- (instancetype)initWithData:(TUIMessageCellData *)data;
@end
NS_ASSUME_NONNULL_END