MyAdvertCell.h 413 B

1234567891011121314151617181920
  1. //
  2. // MyAdvertCell.h
  3. // YBVideo
  4. //
  5. // Created by ybRRR on 2021/12/23.
  6. // Copyright © 2021 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface MyAdvertCell : UICollectionViewCell
  11. @property (weak, nonatomic) IBOutlet UIImageView *thumb;
  12. @property (weak, nonatomic) IBOutlet UILabel *numLb;
  13. @property (nonatomic, strong)NSDictionary *dataDic;
  14. @end
  15. NS_ASSUME_NONNULL_END