12345678910111213141516171819 |
- //
- // YXFindCollectionViewCell.h
- // Temperature
- //
- // Created by TC on 2025/4/9.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface YXFindCollectionViewCell : UICollectionViewCell
- @property (weak, nonatomic) IBOutlet UIImageView *picImageView;
- @property (weak, nonatomic) IBOutlet UILabel *titleLabel;
- @property (weak, nonatomic) IBOutlet UILabel *priceLabel;
- @end
- NS_ASSUME_NONNULL_END
|