// // LLPhotoBrowser.h // LLPhotoBrowser // // Created by zhaomengWang on 17/2/6. // Copyright © 2017年 MaoChao Network Co. Ltd. All rights reserved. // #import @protocol LLPhotoBrowserDelegate; @interface LLPhotoBrowser : UIViewController @property (nonatomic, assign) BOOL hideDeleteButton; @property (nonatomic, weak) id delegate; - (instancetype)initWithImages:(NSArray *)images currentIndex:(NSInteger)currentIndex; @end @protocol LLPhotoBrowserDelegate @optional - (void)photoBrowser:(LLPhotoBrowser *)photoBrowser didSelectImage:(id)image; - (void)photoBrowser:(LLPhotoBrowser *)photoBrowser backImages:(NSMutableArray *)images; @end