GoodsVideoCollectionViewCell.h 713 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // GoodsVideoCollectionViewCell.h
  3. // westkissMob
  4. //
  5. // Created by 王猛 on 2022/9/15.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "ZFPlayer.h"
  9. #import "ZFAVPlayerManager.h"
  10. #import "ZFPlayerControlView.h"
  11. #import "GoodsBannerModel.h"
  12. NS_ASSUME_NONNULL_BEGIN
  13. @interface GoodsVideoCollectionViewCell : UICollectionViewCell
  14. @property (nonatomic, strong) GoodsBannerModel *model;
  15. @property(nonatomic, strong) UIView *forPlayView;
  16. @property(nonatomic, strong) ZFPlayerController *player;
  17. @property(nonatomic, strong) ZFAVPlayerManager *playerManager;
  18. @property(nonatomic, strong) ZFPlayerControlView *controlView;
  19. @property(nonatomic, strong) UIButton *closeBtn;
  20. - (void)playerDealloc;
  21. @end
  22. NS_ASSUME_NONNULL_END