RITLPhotosBrowseLiveCell.h 776 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // RITLPhotosBrowseLiveCell.h
  3. // RITLPhotoDemo
  4. //
  5. // Created by YueWen on 2018/5/9.
  6. // Copyright © 2018年 YueWen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class PHLivePhotoView;
  10. NS_ASSUME_NONNULL_BEGIN
  11. /// 装载live图片的cell
  12. NS_CLASS_AVAILABLE_IOS(9_1) @interface RITLPhotosBrowseLiveCell : UICollectionViewCell
  13. /// 显示图片的imageView
  14. @property (strong, nonatomic) IBOutlet UIImageView *imageView;
  15. /// 支持iOS9.1之后的livePhoto
  16. @property (nonatomic, strong) UIImageView *liveBadgeImageView;
  17. /// 用于描述
  18. @property (nonatomic, strong) UILabel *liveLabel;
  19. /// 用于播放的视图
  20. @property (nonatomic, strong) PHLivePhotoView *livePhotoView;
  21. /// 是否播放
  22. @property (nonatomic, assign) BOOL isPlaying;
  23. @end
  24. NS_ASSUME_NONNULL_END