TUIOrderCell.h 609 B

1234567891011121314151617181920212223242526
  1. //
  2. // TUIOrderCell.h
  3. // TUIChat
  4. //
  5. // Created by xia on 2022/6/13.
  6. // Copyright © 2023 Tencent. All rights reserved.
  7. //
  8. #import <TIMCommon/TUIBubbleMessageCell.h>
  9. #import "TUIOrderCellData.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface TUIOrderCell : TUIBubbleMessageCell
  12. @property(nonatomic, strong) UILabel *titleLabel;
  13. @property(nonatomic, strong) UILabel *descLabel;
  14. @property(nonatomic, strong) UIImageView *iconView;
  15. @property(nonatomic, strong) UILabel *priceLabel;
  16. @property(nonatomic, strong) TUIOrderCellData *customData;
  17. - (void)fillWithData:(TUIOrderCellData *)data;
  18. @end
  19. NS_ASSUME_NONNULL_END