| 12345678910111213141516171819202122232425 |
- //
- // ShopMallCell.h
- // YBVideo
- //
- // Created by ybRRR on 2023/7/14.
- // Copyright © 2023 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface ShopMallCell : UICollectionViewCell
- @property (weak, nonatomic) IBOutlet UIImageView *thumbImgV;
- @property (weak, nonatomic) IBOutlet UILabel *titleL;
- @property (weak, nonatomic) IBOutlet UILabel *priceL;
- @property (weak, nonatomic) IBOutlet UILabel *oldPriceL;
- @property (weak, nonatomic) IBOutlet UIView *statusView;
- @property (weak, nonatomic) IBOutlet UILabel *statusLabel;
- @property (weak, nonatomic) IBOutlet UILabel *sellCountLb;
- @property (strong, nonatomic) IBOutlet UILabel *lineLb;
- @end
- NS_ASSUME_NONNULL_END
|