Files
featherVoice/TUIKit/TUIChat/UI_Minimalist/Input/TUIReplyPreviewBar_Minimalist.h

27 lines
682 B
C
Raw Permalink Normal View History

2025-08-08 10:49:36 +08:00
//
// TUIInputPreviewBar.h
// TUIChat
//
// Created by harvy on 2021/11/9.
// Copyright © 2023 Tencent. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "TUIReplyPreviewData.h"
NS_ASSUME_NONNULL_BEGIN
@interface TUIReplyPreviewBar_Minimalist : UIView
@property(nonatomic, strong) UILabel *titleLabel;
@property(nonatomic, strong) UIButton *closeButton;
@property(nonatomic, copy) TUIInputPreviewBarCallback onClose;
@property(nonatomic, strong) TUIReplyPreviewData *previewData;
@property(nonatomic, strong) TUIReferencePreviewData *previewReferenceData;
@end
@interface TUIReferencePreviewBar_Minimalist : TUIReplyPreviewBar_Minimalist
@end
NS_ASSUME_NONNULL_END