SearchHorizontalCell.h 722 B

12345678910111213141516171819202122232425
  1. //
  2. // SearchHorizontalCell.h
  3. // YBLive
  4. //
  5. // Created by ybRRR on 2020/8/21.
  6. // Copyright © 2020 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface SearchHorizontalCell : UICollectionViewCell
  11. @property (weak, nonatomic) IBOutlet UIImageView *thumbImgV;
  12. @property (weak, nonatomic) IBOutlet UILabel *titleL;
  13. @property (weak, nonatomic) IBOutlet UILabel *priceL;
  14. @property (weak, nonatomic) IBOutlet UILabel *oldPriceL;
  15. @property (weak, nonatomic) IBOutlet UIView *statusView;
  16. @property (weak, nonatomic) IBOutlet UILabel *statusLabel;
  17. @property (weak, nonatomic) IBOutlet UILabel *sellCountLb;
  18. @property (strong, nonatomic) IBOutlet UILabel *lineLb;
  19. @end
  20. NS_ASSUME_NONNULL_END