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