TUIEvaluationCell.h 532 B

123456789101112131415161718192021222324
  1. //
  2. // TUIEvaluationCell.h
  3. // TUIChat
  4. //
  5. // Created by xia on 2022/6/10.
  6. // Copyright © 2023 Tencent. All rights reserved.
  7. //
  8. #import <TIMCommon/TUIBubbleMessageCell.h>
  9. #import "TUIEvaluationCellData.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface TUIEvaluationCell : TUIBubbleMessageCell
  12. @property(nonatomic, strong) UILabel *titleLabel;
  13. @property(nonatomic, strong) UILabel *commentLabel;
  14. @property(nonatomic, strong) NSMutableArray *starImageArray;
  15. - (void)fillWithData:(TUIEvaluationCellData *)data;
  16. @end
  17. NS_ASSUME_NONNULL_END