TUIReplyPreviewBar.h 649 B

1234567891011121314151617181920212223242526
  1. //
  2. // TUIInputPreviewBar.h
  3. // TUIChat
  4. //
  5. // Created by harvy on 2021/11/9.
  6. // Copyright © 2023 Tencent. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "TUIReplyPreviewData.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface TUIReplyPreviewBar : UIView
  12. @property(nonatomic, strong) UILabel *titleLabel;
  13. @property(nonatomic, strong) UIButton *closeButton;
  14. @property(nonatomic, copy) TUIInputPreviewBarCallback onClose;
  15. @property(nonatomic, strong) TUIReplyPreviewData *previewData;
  16. @property(nonatomic, strong) TUIReferencePreviewData *previewReferenceData;
  17. @end
  18. @interface TUIReferencePreviewBar : TUIReplyPreviewBar
  19. @end
  20. NS_ASSUME_NONNULL_END