ZLCollectionCell.h
1.17 KB
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
//
// ZLCollectionCell.h
// 多选相册照片
//
// Created by long on 15/11/25.
// Copyright © 2015年 long. All rights reserved.
//
#import <UIKit/UIKit.h>
@class ZLPhotoModel;
@interface ZLCollectionCell : UICollectionViewCell
@property (nonatomic, strong) UIImageView *imageView;
@property (nonatomic, strong) UIButton *btnSelect;
@property (nonatomic, strong) UIImageView *videoBottomView;
@property (nonatomic, strong) UIImageView *videoImageView;
@property (nonatomic, strong) UIImageView *liveImageView;
@property (nonatomic, strong) UILabel *timeLabel;
@property (nonatomic, strong) UIView *topView;
@property (nonatomic, assign) BOOL allSelectGif;
@property (nonatomic, assign) BOOL allSelectLivePhoto;
@property (nonatomic, assign) BOOL showSelectBtn;
@property (nonatomic, assign) CGFloat cornerRadio;
@property (nonatomic, strong) ZLPhotoModel *model;
@property (nonatomic, strong) UIColor *maskColor;
@property (nonatomic, assign) BOOL showMask;
@property (nonatomic, copy) void (^selectedBlock)(BOOL);
@end
@interface ZLTakePhotoCell : UICollectionViewCell
@property (nonatomic, strong) UIImageView *imageView;
- (void)startCapture;
- (void)restartCapture;
@end