RITLPhotosBrowseVideoCell.h 607 B

1234567891011121314151617181920212223242526
  1. //
  2. // RITLPhotosBrowseVideoCell.h
  3. // RITLPhotoDemo
  4. //
  5. // Created by YueWen on 2018/4/29.
  6. // Copyright © 2018年 YueWen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import <AVKit/AVKit.h>
  10. NS_ASSUME_NONNULL_BEGIN
  11. /// 用于播放视频的cell
  12. @interface RITLPhotosBrowseVideoCell : UICollectionViewCell
  13. /// 显示图片的imageView
  14. @property (strong, nonatomic) IBOutlet UIImageView *imageView;
  15. /// 显示播放的视图
  16. @property (nonatomic, strong) UIImageView *playImageView;
  17. /// 播放的layer
  18. @property (nonatomic, strong, nullable) AVPlayerLayer *playerLayer;
  19. @end
  20. NS_ASSUME_NONNULL_END