Files
featherVoice/TUIKit/TUICustomerServicePlugin/UI_Classic/BaseCell/TUIBotStreamTextCellData.h

20 lines
494 B
C
Raw Normal View History

2025-08-08 10:49:36 +08:00
//
// TUIBotStreamTextCellData.h
// TUICustomerServicePlugin
//
// Created by lynx on 2023/10/30.
//
#import <TUIChat/TUITextMessageCellData.h>
NS_ASSUME_NONNULL_BEGIN
@interface TUIBotStreamTextCellData : TUITextMessageCellData
@property(nonatomic, strong) dispatch_source_t timer;
@property(nonatomic, strong) UIFont *contentFont;
@property(nonatomic, strong) NSAttributedString *contentString;
@property(nonatomic, assign) NSInteger displayedContentLength;
@end
NS_ASSUME_NONNULL_END