RITLPhotosBrowseDataSource.h 541 B

12345678910111213141516171819202122
  1. //
  2. // RITLPhotosBrowseDataSource.h
  3. // RITLPhotoDemo
  4. //
  5. // Created by YueWen on 2018/5/18.
  6. // Copyright © 2018年 YueWen. All rights reserved.
  7. //
  8. #import "RITLPhotosHorBrowseDataSource.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. /// 游览所有数据的数据源
  11. @interface RITLPhotosBrowseDataSource : NSObject <RITLPhotosHorBrowseDataSource>
  12. /// 资源对象
  13. @property (nonatomic, copy)NSArray <PHAsset *>*assets;
  14. ///进行资源化的Manager
  15. @property (nonatomic, strong, readonly)PHCachingImageManager* imageManager;
  16. @end
  17. NS_ASSUME_NONNULL_END