EvaluationListCell.h 833 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // EvaluationListCell.h
  3. // yunbaolive
  4. //
  5. // Created by ybRRR on 2020/3/27.
  6. // Copyright © 2020 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "CWStarRateView.h"
  10. #import "EvaluationListModel.h"
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface EvaluationListCell : UITableViewCell<CWStarRateViewDelegate>
  13. {
  14. UILabel *contentLb;
  15. UILabel *append_contentLb;
  16. UILabel *append_timeLb;
  17. UILabel *appenline;
  18. UILabel *time_format; //时间
  19. UILabel *spec_format; //规格
  20. UILabel *dateLb ;
  21. UILabel *standLb;
  22. }
  23. @property (nonatomic, strong)UIImageView *headImg;
  24. @property (nonatomic, strong)UILabel *nameLb;
  25. @property (nonatomic, strong)CWStarRateView *starView;
  26. @property (nonatomic, strong)EvaluationListModel *model;
  27. @property (nonatomic, assign)CGFloat imgWidth;
  28. @end
  29. NS_ASSUME_NONNULL_END