27 lines
649 B
Objective-C
27 lines
649 B
Objective-C
//
|
|
// 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
|