CollectionViewPlayerCell.h 494 B

12345678910111213141516171819202122232425
  1. //
  2. // CollectionViewPlayerCell.h
  3. // LenzCameraNativeModuleForRN
  4. //
  5. // Created by 王昭威 on 2023/1/24.
  6. //
  7. #import "PhotoCollectionViewCell.h"
  8. #import "LenzHeader.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @class MoviePlayerViewController;
  11. @interface CollectionViewPlayerCell : PhotoCollectionViewCell
  12. @property (nonatomic, weak) IBOutlet UIView* playIconView;
  13. @property (nonatomic, readonly) MoviePlayerViewController* playerController;
  14. - (AVPlayer*)play;
  15. - (void)stop;
  16. @end
  17. NS_ASSUME_NONNULL_END