CommodityEvaluationCell.h 785 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // CommodityEvaluationCell.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 "CommodityDetailModel.h"
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface CommodityEvaluationCell : UITableViewCell<CWStarRateViewDelegate>
  13. {
  14. UILabel *contentLb;
  15. }
  16. @property (nonatomic, strong)UIImageView *headImg;
  17. @property (nonatomic, strong)UILabel *nameLb;
  18. @property (nonatomic, strong)CWStarRateView *starView;
  19. @property (nonatomic, strong)NSMutableArray *allArr;
  20. @property (nonatomic, assign)CGFloat imgWidth;
  21. @property (nonatomic, strong)CommodityDetailModel *model;
  22. -(void)setCommodityModel:(CommodityDetailModel *)model andListModel:(NSDictionary *)listDic;
  23. @end
  24. NS_ASSUME_NONNULL_END