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

27 lines
649 B
C
Raw Normal View History

2025-08-14 10:07:49 +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 : 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 : TUIReplyPreviewBar
@end
NS_ASSUME_NONNULL_END