CatalogCellSmall.h 636 B

1234567891011121314151617181920212223
  1. //
  2. // CatalogCellSmall.h
  3. // iShop
  4. //
  5. // Created by Rui Zhang on 12/29/23.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "StrikethroughLabel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface CatalogCellSmall : UICollectionViewCell
  11. @property (strong, nonatomic) IBOutlet UIImageView *cellImageView;
  12. //@property (strong, nonatomic) IBOutlet UILabel *cellDescription;
  13. @property (strong, nonatomic) IBOutlet UILabel *nameLabel;
  14. @property (strong, nonatomic) IBOutlet UILabel *modelNoLabel;
  15. @property (weak, nonatomic) IBOutlet UIImageView *ic_closeout;
  16. @property (nonatomic,copy) NSString *imageName;///<识别图片是否更改
  17. @end
  18. NS_ASSUME_NONNULL_END