OutsideHeadCell.h 656 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // OutsideHeadCell.h
  3. // yunbaolive
  4. //
  5. // Created by ybRRR on 2020/5/27.
  6. // Copyright © 2020 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "SDCycleScrollView.h"
  10. #import "CommodityDetailModel.h"
  11. #import "sliderCollectionView.h"
  12. NS_ASSUME_NONNULL_BEGIN
  13. @interface OutsideHeadCell : UITableViewCell<SDCycleScrollViewDelegate>
  14. {
  15. UILabel *statusLb;
  16. UILabel *priceLb;
  17. UILabel *original_priceLb;
  18. UILabel *nameLb;
  19. UILabel *desLb;
  20. sliderCollectionView *sliderView;
  21. }
  22. @property (nonatomic,strong) SDCycleScrollView *cycleScroll;
  23. @property (nonatomic, strong)CommodityDetailModel *model;
  24. @end
  25. NS_ASSUME_NONNULL_END