RITLPhotosHorBrowseViewController.h 623 B

12345678910111213141516171819202122232425262728
  1. //
  2. // RITLPhotoHorBrowerViewController.h
  3. // RITLPhotoDemo
  4. //
  5. // Created by YueWen on 2018/4/27.
  6. // Copyright © 2018年 YueWen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import <Photos/Photos.h>
  10. #import "RITLPhotosHorBrowseDataSource.h"
  11. NS_ASSUME_NONNULL_BEGIN
  12. typedef void(^RITLPhotosHorBrowseWillBack)(BOOL isEdit, PHAsset *asset);
  13. @interface RITLPhotosHorBrowseViewController : UIViewController
  14. /// 返回的block
  15. @property (nonatomic, copy) RITLPhotosHorBrowseWillBack backHandler;
  16. /// 数据源
  17. @property (nonatomic, strong) id<RITLPhotosHorBrowseDataSource> dataSource;
  18. @end
  19. NS_ASSUME_NONNULL_END