| 1234567891011121314151617181920 |
- //
- // MyAdvertCell.h
- // YBVideo
- //
- // Created by ybRRR on 2021/12/23.
- // Copyright © 2021 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface MyAdvertCell : UICollectionViewCell
- @property (weak, nonatomic) IBOutlet UIImageView *thumb;
- @property (weak, nonatomic) IBOutlet UILabel *numLb;
- @property (nonatomic, strong)NSDictionary *dataDic;
- @end
- NS_ASSUME_NONNULL_END
|