LLPhotoBrowser.h 708 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // LLPhotoBrowser.h
  3. // LLPhotoBrowser
  4. //
  5. // Created by zhaomengWang on 17/2/6.
  6. // Copyright © 2017年 MaoChao Network Co. Ltd. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol LLPhotoBrowserDelegate;
  10. @interface LLPhotoBrowser : UIViewController
  11. @property (nonatomic, assign) BOOL hideDeleteButton;
  12. @property (nonatomic, weak) id<LLPhotoBrowserDelegate> delegate;
  13. - (instancetype)initWithImages:(NSArray *)images currentIndex:(NSInteger)currentIndex;
  14. @end
  15. @protocol LLPhotoBrowserDelegate <NSObject>
  16. @optional
  17. - (void)photoBrowser:(LLPhotoBrowser *)photoBrowser didSelectImage:(id)image;
  18. - (void)photoBrowser:(LLPhotoBrowser *)photoBrowser backImages:(NSMutableArray *)images;
  19. @end