1234567891011121314151617181920 |
- //
- // ASProductListImageCell.h
- // Asteria
- //
- // Created by iOS on 2023/6/14.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface ASProductListImageCell : UICollectionViewCell
- @property (nonatomic, strong) UIImageView *imgV;
- - (void)setImgStr:(NSString *)imgStr;
- @end
- NS_ASSUME_NONNULL_END
|