ZLPhotoBrowser.h
1005 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
//
// ZLPhotoBrowser.h
// 多选相册照片
//
// Created by long on 15/11/27.
// Copyright © 2015年 long. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "ZLDefine.h"
#import "ZLPhotoConfiguration.h"
@class ZLPhotoModel;
@interface ZLImageNavigationController : UINavigationController
@property (nonatomic, assign) UIStatusBarStyle previousStatusBarStyle;
/**
是否选择了原图
*/
@property (nonatomic, assign) BOOL isSelectOriginalPhoto;
@property (nonatomic, copy) NSMutableArray<ZLPhotoModel *> *arrSelectedModels;
/**
相册框架配置
*/
@property (nonatomic, strong) ZLPhotoConfiguration *configuration;
/**
点击确定选择照片回调
*/
@property (nonatomic, copy) void (^callSelectImageBlock)(void);
/**
编辑图片后回调
*/
@property (nonatomic, copy) void (^callSelectClipImageBlock)(UIImage *, PHAsset *);
/**
取消block
*/
@property (nonatomic, copy) void (^cancelBlock)(void);
@end
@interface ZLPhotoBrowser : UITableViewController
@end