1234567891011121314151617181920212223242526272829 |
- //
- // GoodsVideoCollectionViewCell.h
- // westkissMob
- //
- // Created by 王猛 on 2022/9/15.
- //
- #import <UIKit/UIKit.h>
- #import "ZFPlayer.h"
- #import "ZFAVPlayerManager.h"
- #import "ZFPlayerControlView.h"
- #import "GoodsBannerModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface GoodsVideoCollectionViewCell : UICollectionViewCell
- @property (nonatomic, strong) GoodsBannerModel *model;
- @property(nonatomic, strong) UIView *forPlayView;
- @property(nonatomic, strong) ZFPlayerController *player;
- @property(nonatomic, strong) ZFAVPlayerManager *playerManager;
- @property(nonatomic, strong) ZFPlayerControlView *controlView;
- @property(nonatomic, strong) UIButton *closeBtn;
- - (void)playerDealloc;
- @end
- NS_ASSUME_NONNULL_END
|