ZLThumbnailViewController.m
42.1 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
//
// ZLThumbnailViewController.m
// 多选相册照片
//
// Created by long on 15/11/30.
// Copyright © 2015年 long. All rights reserved.
//
#import "ZLThumbnailViewController.h"
#import <Photos/Photos.h>
#import "ZLDefine.h"
#import "ZLCollectionCell.h"
#import "ZLPhotoManager.h"
#import "ZLPhotoModel.h"
#import "ZLShowBigImgViewController.h"
#import "ZLPhotoBrowser.h"
#import "ToastUtils.h"
#import "ZLProgressHUD.h"
#import "ZLForceTouchPreviewController.h"
#import "ZLEditViewController.h"
#import "ZLEditVideoController.h"
#import "ZLCustomCamera.h"
#import <MobileCoreServices/MobileCoreServices.h>
typedef NS_ENUM(NSUInteger, SlideSelectType) {
SlideSelectTypeNone,
SlideSelectTypeSelect,
SlideSelectTypeCancel,
};
@interface ZLThumbnailViewController () <UICollectionViewDataSource, UICollectionViewDelegate, UINavigationControllerDelegate, UIImagePickerControllerDelegate, UIViewControllerPreviewingDelegate>
{
BOOL _isLayoutOK;
//设备旋转前的第一个可视indexPath
NSIndexPath *_visibleIndexPath;
//是否切换横竖屏
BOOL _switchOrientation;
//开始滑动选择 或 取消
BOOL _beginSelect;
/**
滑动选择 或 取消
当初始滑动的cell处于未选择状态,则开始选择,反之,则开始取消选择
*/
SlideSelectType _selectType;
/**开始滑动的indexPath*/
NSIndexPath *_beginSlideIndexPath;
/**最后滑动经过的index,开始的indexPath不计入,优化拖动手势计算,避免单个cell中冗余计算多次*/
NSInteger _lastSlideIndex;
}
@property (nonatomic, strong) NSMutableArray<ZLPhotoModel *> *arrDataSources;
@property (nonatomic, assign) BOOL allowTakePhoto;
/**所有滑动经过的indexPath*/
@property (nonatomic, strong) NSMutableArray<NSIndexPath *> *arrSlideIndexPath;
/**所有滑动经过的indexPath的初始选择状态*/
@property (nonatomic, strong) NSMutableDictionary<NSString *, NSNumber *> *dicOriSelectStatus;
@end
@implementation ZLThumbnailViewController
- (void)dealloc
{
[[NSNotificationCenter defaultCenter] removeObserver:self];
// NSLog(@"---- %s", __FUNCTION__);
}
- (NSMutableArray<ZLPhotoModel *> *)arrDataSources
{
if (!_arrDataSources) {
ZLProgressHUD *hud = [[ZLProgressHUD alloc] init];
[hud show];
ZLImageNavigationController *nav = (ZLImageNavigationController *)self.navigationController;
ZLPhotoConfiguration *configuration = nav.configuration;
if (!_albumListModel) {
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
zl_weakify(self);
[ZLPhotoManager getCameraRollAlbumList:configuration.allowSelectVideo allowSelectImage:configuration.allowSelectImage complete:^(ZLAlbumListModel *album) {
zl_strongify(weakSelf);
ZLImageNavigationController *weakNav = (ZLImageNavigationController *)strongSelf.navigationController;
strongSelf.albumListModel = album;
[ZLPhotoManager markSelectModelInArr:strongSelf.albumListModel.models selArr:weakNav.arrSelectedModels];
strongSelf.arrDataSources = [NSMutableArray arrayWithArray:strongSelf.albumListModel.models];
[hud hide];
dispatch_async(dispatch_get_main_queue(), ^{
if (configuration.allowTakePhotoInLibrary && (configuration.allowSelectImage || configuration.allowRecordVideo)) {
strongSelf.allowTakePhoto = YES;
}
strongSelf.title = album.title;
[strongSelf.collectionView reloadData];
[strongSelf scrollToBottom];
});
}];
});
} else {
if (configuration.allowTakePhotoInLibrary && (configuration.allowSelectImage || configuration.allowRecordVideo) && self.albumListModel.isCameraRoll) {
self.allowTakePhoto = YES;
}
[ZLPhotoManager markSelectModelInArr:self.albumListModel.models selArr:nav.arrSelectedModels];
_arrDataSources = [NSMutableArray arrayWithArray:self.albumListModel.models];
[hud hide];
}
}
return _arrDataSources;
}
- (NSMutableArray<NSIndexPath *> *)arrSlideIndexPath
{
if (!_arrSlideIndexPath) {
_arrSlideIndexPath = [NSMutableArray array];
}
return _arrSlideIndexPath;
}
- (NSMutableDictionary<NSString *, NSNumber *> *)dicOriSelectStatus
{
if (!_dicOriSelectStatus) {
_dicOriSelectStatus = [NSMutableDictionary dictionary];
}
return _dicOriSelectStatus;
}
- (void)viewDidLoad {
[super viewDidLoad];
self.view.backgroundColor = [UIColor whiteColor];
self.title = self.albumListModel.title;
[self initNavBtn];
[self setupCollectionView];
[self setupBottomView];
ZLPhotoConfiguration *configuration = [(ZLImageNavigationController *)self.navigationController configuration];
if (configuration.allowSlideSelect) {
//添加滑动选择手势
UIPanGestureRecognizer *pan = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(panAction:)];
[self.view addGestureRecognizer:pan];
}
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(deviceOrientationChanged:) name:UIApplicationWillChangeStatusBarOrientationNotification object:nil];
}
- (void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
[UIApplication sharedApplication].statusBarHidden = NO;
[self.navigationController setNavigationBarHidden:NO animated:NO];
[self resetBottomBtnsStatus:YES];
}
- (void)viewDidAppear:(BOOL)animated
{
[super viewDidAppear:animated];
_isLayoutOK = YES;
}
- (void)viewDidLayoutSubviews
{
[super viewDidLayoutSubviews];
UIEdgeInsets inset = UIEdgeInsetsZero;
if (@available(iOS 11, *)) {
inset = self.view.safeAreaInsets;
}
BOOL showBottomView = YES;
ZLPhotoConfiguration *configuration = [(ZLImageNavigationController *)self.navigationController configuration];
if (configuration.editAfterSelectThumbnailImage && configuration.maxSelectCount == 1 && (configuration.allowEditImage || configuration.allowEditVideo)) {
//点击后直接编辑则不需要下方工具条
showBottomView = NO;
inset.bottom = 0;
}
CGFloat bottomViewH = showBottomView ? 44 : 0;
CGFloat bottomBtnH = 30;
CGFloat width = kViewWidth-inset.left-inset.right;
self.collectionView.frame = CGRectMake(inset.left, 0, width, kViewHeight-inset.bottom-bottomViewH);
if (!showBottomView) return;
self.bottomView.frame = CGRectMake(inset.left, kViewHeight-bottomViewH-inset.bottom, width, bottomViewH+inset.bottom);
self.bline.frame = CGRectMake(0, 0, width, 1/[UIScreen mainScreen].scale);
CGFloat offsetX = 12;
if (configuration.allowEditImage || configuration.allowEditVideo) {
self.btnEdit.frame = CGRectMake(offsetX, 7, GetMatchValue(GetLocalLanguageTextValue(ZLPhotoBrowserEditText), 15, YES, bottomBtnH), bottomBtnH);
offsetX = CGRectGetMaxX(self.btnEdit.frame) + 10;
}
self.btnPreView.frame = CGRectMake(offsetX, 7, GetMatchValue(GetLocalLanguageTextValue(ZLPhotoBrowserPreviewText), 15, YES, bottomBtnH), bottomBtnH);
offsetX = CGRectGetMaxX(self.btnPreView.frame) + 10;
if (configuration.allowSelectOriginal) {
self.btnOriginalPhoto.frame = CGRectMake(offsetX, 7, GetMatchValue(GetLocalLanguageTextValue(ZLPhotoBrowserOriginalText), 15, YES, bottomBtnH)+25, bottomBtnH);
offsetX = CGRectGetMaxX(self.btnOriginalPhoto.frame) + 5;
self.labPhotosBytes.frame = CGRectMake(offsetX, 7, 80, bottomBtnH);
}
CGFloat doneWidth = GetMatchValue(self.btnDone.currentTitle, 15, YES, bottomBtnH);
doneWidth = MAX(70, doneWidth);
self.btnDone.frame = CGRectMake(width-doneWidth-12, 7, doneWidth, bottomBtnH);
if (!_isLayoutOK && self.albumListModel) {
[self scrollToBottom];
} else if (_switchOrientation) {
_switchOrientation = NO;
[self.collectionView scrollToItemAtIndexPath:_visibleIndexPath atScrollPosition:UICollectionViewScrollPositionTop animated:NO];
}
}
#pragma mark - 设备旋转
- (void)deviceOrientationChanged:(NSNotification *)notify
{
CGPoint pInView = [self.view convertPoint:CGPointMake(0, 70) toView:self.collectionView];
_visibleIndexPath = [self.collectionView indexPathForItemAtPoint:pInView];
_switchOrientation = YES;
}
- (BOOL)forceTouchAvailable
{
if (@available(iOS 9.0, *)) {
return self.traitCollection.forceTouchCapability == UIForceTouchCapabilityAvailable;
} else {
return NO;
}
}
- (void)scrollToBottom
{
ZLPhotoConfiguration *configuration = [(ZLImageNavigationController *)self.navigationController configuration];
if (!configuration.sortAscending) {
return;
}
if (self.arrDataSources.count > 0) {
NSInteger index = self.arrDataSources.count-1;
if (self.allowTakePhoto) {
index += 1;
}
[self.collectionView scrollToItemAtIndexPath:[NSIndexPath indexPathForRow:index inSection:0] atScrollPosition:UICollectionViewScrollPositionBottom animated:NO];
}
}
- (void)resetBottomBtnsStatus:(BOOL)getBytes
{
ZLImageNavigationController *nav = (ZLImageNavigationController *)self.navigationController;
ZLPhotoConfiguration *configuration = nav.configuration;
if (nav.arrSelectedModels.count > 0) {
self.btnOriginalPhoto.enabled = YES;
self.btnPreView.enabled = YES;
self.btnDone.enabled = YES;
if (nav.isSelectOriginalPhoto) {
if (getBytes) [self getOriginalImageBytes];
} else {
self.labPhotosBytes.text = nil;
}
self.btnOriginalPhoto.selected = nav.isSelectOriginalPhoto;
[self.btnDone setTitle:[NSString stringWithFormat:@"%@(%ld)", GetLocalLanguageTextValue(ZLPhotoBrowserDoneText), nav.arrSelectedModels.count] forState:UIControlStateNormal];
[self.btnOriginalPhoto setTitleColor:configuration.bottomBtnsNormalTitleColor forState:UIControlStateNormal];
[self.btnPreView setTitleColor:configuration.bottomBtnsNormalTitleColor forState:UIControlStateNormal];
self.btnDone.backgroundColor = configuration.bottomBtnsNormalTitleColor;
} else {
self.btnOriginalPhoto.selected = NO;
self.btnOriginalPhoto.enabled = NO;
self.btnPreView.enabled = NO;
self.btnDone.enabled = NO;
self.labPhotosBytes.text = nil;
[self.btnDone setTitle:GetLocalLanguageTextValue(ZLPhotoBrowserDoneText) forState:UIControlStateDisabled];
[self.btnOriginalPhoto setTitleColor:configuration.bottomBtnsDisableBgColor forState:UIControlStateDisabled];
[self.btnPreView setTitleColor:configuration.bottomBtnsDisableBgColor forState:UIControlStateDisabled];
self.btnDone.backgroundColor = configuration.bottomBtnsDisableBgColor;
}
BOOL canEdit = NO;
if (nav.arrSelectedModels.count == 1) {
ZLPhotoModel *m = nav.arrSelectedModels.firstObject;
canEdit = (configuration.allowEditImage && ((m.type == ZLAssetMediaTypeImage) ||
(m.type == ZLAssetMediaTypeGif && !configuration.allowSelectGif) ||
(m.type == ZLAssetMediaTypeLivePhoto && !configuration.allowSelectLivePhoto))) ||
(configuration.allowEditVideo && m.type == ZLAssetMediaTypeVideo && round(m.asset.duration) >= configuration.maxEditVideoTime);
}
[self.btnEdit setTitleColor:canEdit?configuration.bottomBtnsNormalTitleColor:configuration.bottomBtnsDisableBgColor forState:UIControlStateNormal];
self.btnEdit.userInteractionEnabled = canEdit;
}
#pragma mark - ui
- (void)setupCollectionView
{
UICollectionViewFlowLayout *layout = [[UICollectionViewFlowLayout alloc] init];
CGFloat width = MIN(kViewWidth, kViewHeight);
NSInteger columnCount;
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
columnCount = 6;
} else {
columnCount = 4;
}
layout.itemSize = CGSizeMake((width-1.5*columnCount)/columnCount, (width-1.5*columnCount)/columnCount);
layout.minimumInteritemSpacing = 1.5;
layout.minimumLineSpacing = 1.5;
layout.sectionInset = UIEdgeInsetsMake(3, 0, 3, 0);
self.collectionView = [[UICollectionView alloc] initWithFrame:CGRectZero collectionViewLayout:layout];
self.collectionView.backgroundColor = [UIColor whiteColor];
self.collectionView.dataSource = self;
self.collectionView.delegate = self;
if (@available(iOS 11.0, *)) {
[self.collectionView setContentInsetAdjustmentBehavior:UIScrollViewContentInsetAdjustmentAlways];
}
[self.view addSubview:self.collectionView];
[self.collectionView registerClass:NSClassFromString(@"ZLTakePhotoCell") forCellWithReuseIdentifier:@"ZLTakePhotoCell"];
[self.collectionView registerClass:NSClassFromString(@"ZLCollectionCell") forCellWithReuseIdentifier:@"ZLCollectionCell"];
//注册3d touch
ZLPhotoConfiguration *configuration = [(ZLImageNavigationController *)self.navigationController configuration];
if (configuration.allowForceTouch && [self forceTouchAvailable]) {
[self registerForPreviewingWithDelegate:self sourceView:self.collectionView];
}
}
- (void)setupBottomView
{
ZLPhotoConfiguration *configuration = [(ZLImageNavigationController *)self.navigationController configuration];
if (configuration.editAfterSelectThumbnailImage && configuration.maxSelectCount == 1 && (configuration.allowEditImage || configuration.allowEditVideo)) {
//点击后直接编辑则不需要下方工具条
return;
}
self.bottomView = [[UIView alloc] init];
self.bottomView.backgroundColor = configuration.bottomViewBgColor;
[self.view addSubview:self.bottomView];
self.bline = [[UIView alloc] init];
self.bline.backgroundColor = kRGB(232, 232, 232);
[self.bottomView addSubview:self.bline];
if (configuration.allowEditImage || configuration.allowEditVideo) {
self.btnEdit = [UIButton buttonWithType:UIButtonTypeCustom];
self.btnEdit.titleLabel.font = [UIFont systemFontOfSize:15];
[self.btnEdit setTitle:GetLocalLanguageTextValue(ZLPhotoBrowserEditText) forState:UIControlStateNormal];
[self.btnEdit addTarget:self action:@selector(btnEdit_Click:) forControlEvents:UIControlEventTouchUpInside];
[self.bottomView addSubview:self.btnEdit];
}
self.btnPreView = [UIButton buttonWithType:UIButtonTypeCustom];
self.btnPreView.titleLabel.font = [UIFont systemFontOfSize:15];
[self.btnPreView setTitle:GetLocalLanguageTextValue(ZLPhotoBrowserPreviewText) forState:UIControlStateNormal];
[self.btnPreView addTarget:self action:@selector(btnPreview_Click:) forControlEvents:UIControlEventTouchUpInside];
[self.bottomView addSubview:self.btnPreView];
if (configuration.allowSelectOriginal) {
self.btnOriginalPhoto = [UIButton buttonWithType:UIButtonTypeCustom];
self.btnOriginalPhoto.titleLabel.font = [UIFont systemFontOfSize:15];
[self.btnOriginalPhoto setImage:GetImageWithName(@"btn_original_circle") forState:UIControlStateNormal];
[self.btnOriginalPhoto setImage:GetImageWithName(@"btn_selected") forState:UIControlStateSelected];
[self.btnOriginalPhoto setTitle:GetLocalLanguageTextValue(ZLPhotoBrowserOriginalText) forState:UIControlStateNormal];
[self.btnOriginalPhoto addTarget:self action:@selector(btnOriginalPhoto_Click:) forControlEvents:UIControlEventTouchUpInside];
[self.bottomView addSubview:self.btnOriginalPhoto];
self.labPhotosBytes = [[UILabel alloc] init];
self.labPhotosBytes.font = [UIFont systemFontOfSize:15];
self.labPhotosBytes.textColor = configuration.bottomBtnsNormalTitleColor;
[self.bottomView addSubview:self.labPhotosBytes];
}
self.btnDone = [UIButton buttonWithType:UIButtonTypeCustom];
self.btnDone.titleLabel.font = [UIFont systemFontOfSize:15];
[self.btnDone setTitleColor:[UIColor whiteColor] forState:UIControlStateDisabled];
[self.btnDone setTitle:GetLocalLanguageTextValue(ZLPhotoBrowserDoneText) forState:UIControlStateNormal];
self.btnDone.layer.masksToBounds = YES;
self.btnDone.layer.cornerRadius = 3.0f;
[self.btnDone addTarget:self action:@selector(btnDone_Click:) forControlEvents:UIControlEventTouchUpInside];
[self.bottomView addSubview:self.btnDone];
}
- (void)initNavBtn
{
ZLImageNavigationController *nav = (ZLImageNavigationController *)self.navigationController;
ZLPhotoConfiguration *configuration = nav.configuration;
nav.viewControllers.firstObject.navigationItem.backBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:GetLocalLanguageTextValue(ZLPhotoBrowserBackText) style:UIBarButtonItemStylePlain target:nil action:nil];
UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom];
CGFloat width = GetMatchValue(GetLocalLanguageTextValue(ZLPhotoBrowserCancelText), 16, YES, 44);
btn.frame = CGRectMake(0, 0, width, 44);
btn.titleLabel.font = [UIFont systemFontOfSize:16];
[btn setTitle:GetLocalLanguageTextValue(ZLPhotoBrowserCancelText) forState:UIControlStateNormal];
[btn setTitleColor:configuration.navTitleColor forState:UIControlStateNormal];
[btn addTarget:self action:@selector(navRightBtn_Click) forControlEvents:UIControlEventTouchUpInside];
self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:btn];
}
#pragma mark - UIButton Action
- (void)btnEdit_Click:(id)sender {
ZLImageNavigationController *nav = (ZLImageNavigationController *)self.navigationController;
ZLPhotoModel *m = nav.arrSelectedModels.firstObject;
if (m.type == ZLAssetMediaTypeVideo) {
ZLEditVideoController *vc = [[ZLEditVideoController alloc] init];
vc.model = m;
[self.navigationController pushViewController:vc animated:NO];
} else if (m.type == ZLAssetMediaTypeImage ||
m.type == ZLAssetMediaTypeGif ||
m.type == ZLAssetMediaTypeLivePhoto) {
ZLEditViewController *vc = [[ZLEditViewController alloc] init];
vc.model = m;
[self.navigationController pushViewController:vc animated:NO];
}
}
- (void)btnPreview_Click:(id)sender
{
ZLImageNavigationController *nav = (ZLImageNavigationController *)self.navigationController;
UIViewController *vc = [self getBigImageVCWithData:nav.arrSelectedModels index:nav.arrSelectedModels.count-1];
[self.navigationController showViewController:vc sender:nil];
}
- (UIViewController *)getBigImageVCWithData:(NSArray<ZLPhotoModel *> *)data index:(NSInteger)index
{
ZLShowBigImgViewController *vc = [[ZLShowBigImgViewController alloc] init];
vc.models = data.copy;
vc.selectIndex = index;
zl_weakify(self);
[vc setBtnBackBlock:^(NSArray<ZLPhotoModel *> *selectedModels, BOOL isOriginal) {
zl_strongify(weakSelf);
[ZLPhotoManager markSelectModelInArr:strongSelf.arrDataSources selArr:selectedModels];
[strongSelf.collectionView reloadData];
}];
return vc;
}
- (void)btnOriginalPhoto_Click:(id)sender
{
ZLImageNavigationController *nav = (ZLImageNavigationController *)self.navigationController;
self.btnOriginalPhoto.selected = !self.btnOriginalPhoto.selected;
nav.isSelectOriginalPhoto = self.btnOriginalPhoto.selected;
if (nav.isSelectOriginalPhoto) {
[self getOriginalImageBytes];
} else {
self.labPhotosBytes.text = nil;
}
}
- (void)btnDone_Click:(id)sender
{
ZLImageNavigationController *nav = (ZLImageNavigationController *)self.navigationController;
if (nav.callSelectImageBlock) {
nav.callSelectImageBlock();
}
}
- (void)navLeftBtn_Click
{
[self.navigationController popViewControllerAnimated:YES];
}
- (void)navRightBtn_Click
{
ZLImageNavigationController *nav = (ZLImageNavigationController *)self.navigationController;
if (nav.cancelBlock) {
nav.cancelBlock();
}
[nav dismissViewControllerAnimated:YES completion:nil];
}
#pragma mark - pan action
- (void)panAction:(UIPanGestureRecognizer *)pan
{
CGPoint point = [pan locationInView:self.collectionView];
NSIndexPath *indexPath = [self.collectionView indexPathForItemAtPoint:point];
UICollectionViewCell *cell = [self.collectionView cellForItemAtIndexPath:indexPath];
ZLImageNavigationController *nav = (ZLImageNavigationController *)self.navigationController;
ZLPhotoConfiguration *configuration = nav.configuration;
BOOL asc = !self.allowTakePhoto || configuration.sortAscending;
if (pan.state == UIGestureRecognizerStateBegan) {
_beginSelect = !indexPath ? NO : ![cell isKindOfClass:ZLTakePhotoCell.class];
if (_beginSelect) {
NSInteger index = asc ? indexPath.row : indexPath.row-1;
ZLPhotoModel *m = self.arrDataSources[index];
_selectType = m.isSelected ? SlideSelectTypeCancel : SlideSelectTypeSelect;
_beginSlideIndexPath = indexPath;
if (!m.isSelected && [self canAddModel:m]) {
if (configuration.editAfterSelectThumbnailImage &&
configuration.maxSelectCount == 1 &&
(configuration.allowEditImage || configuration.allowEditVideo)) {
[self shouldDirectEdit:m];
_selectType = SlideSelectTypeNone;
return;
} else {
m.selected = YES;
[nav.arrSelectedModels addObject:m];
}
} else if (m.isSelected) {
m.selected = NO;
for (ZLPhotoModel *sm in nav.arrSelectedModels) {
if ([sm.asset.localIdentifier isEqualToString:m.asset.localIdentifier]) {
[nav.arrSelectedModels removeObject:sm];
break;
}
}
}
ZLCollectionCell *c = (ZLCollectionCell *)cell;
c.btnSelect.selected = m.isSelected;
c.topView.hidden = configuration.showSelectedMask ? !m.isSelected : YES;
[self resetBottomBtnsStatus:NO];
}
} else if (pan.state == UIGestureRecognizerStateChanged) {
if (!_beginSelect ||
!indexPath ||
indexPath.row == _lastSlideIndex ||
[cell isKindOfClass:ZLTakePhotoCell.class] ||
_selectType == SlideSelectTypeNone) return;
_lastSlideIndex = indexPath.row;
NSInteger minIndex = MIN(indexPath.row, _beginSlideIndexPath.row);
NSInteger maxIndex = MAX(indexPath.row, _beginSlideIndexPath.row);
BOOL minIsBegin = minIndex == _beginSlideIndexPath.row;
for (NSInteger i = _beginSlideIndexPath.row;
minIsBegin ? i<=maxIndex: i>= minIndex;
minIsBegin ? i++ : i--) {
if (i == _beginSlideIndexPath.row) continue;
NSIndexPath *p = [NSIndexPath indexPathForRow:i inSection:0];
if (![self.arrSlideIndexPath containsObject:p]) {
[self.arrSlideIndexPath addObject:p];
NSInteger index = asc ? i : i-1;
ZLPhotoModel *m = self.arrDataSources[index];
[self.dicOriSelectStatus setValue:@(m.isSelected) forKey:@(p.row).stringValue];
}
}
for (NSIndexPath *path in self.arrSlideIndexPath) {
NSInteger index = asc ? path.row : path.row-1;
//是否在最初和现在的间隔区间内
BOOL inSection = path.row >= minIndex && path.row <= maxIndex;
ZLPhotoModel *m = self.arrDataSources[index];
switch (_selectType) {
case SlideSelectTypeSelect: {
if (inSection &&
!m.isSelected &&
[self canAddModel:m]) m.selected = YES;
}
break;
case SlideSelectTypeCancel: {
if (inSection) m.selected = NO;
}
break;
default:
break;
}
if (!inSection) {
//未在区间内的model还原为初始选择状态
m.selected = [self.dicOriSelectStatus[@(path.row).stringValue] boolValue];
}
//判断当前model是否已存在于已选择数组中
BOOL flag = NO;
NSMutableArray *arrDel = [NSMutableArray array];
for (ZLPhotoModel *sm in nav.arrSelectedModels) {
if ([sm.asset.localIdentifier isEqualToString:m.asset.localIdentifier]) {
if (!m.isSelected) {
[arrDel addObject:sm];
}
flag = YES;
break;
}
}
[nav.arrSelectedModels removeObjectsInArray:arrDel];
if (!flag && m.isSelected) {
[nav.arrSelectedModels addObject:m];
}
ZLCollectionCell *c = (ZLCollectionCell *)[self.collectionView cellForItemAtIndexPath:path];
c.btnSelect.selected = m.isSelected;
c.topView.hidden = configuration.showSelectedMask ? !m.isSelected : YES;
[self resetBottomBtnsStatus:NO];
}
} else if (pan.state == UIGestureRecognizerStateEnded ||
pan.state == UIGestureRecognizerStateCancelled) {
//清空临时属性及数组
_selectType = SlideSelectTypeNone;
[self.arrSlideIndexPath removeAllObjects];
[self.dicOriSelectStatus removeAllObjects];
[self resetBottomBtnsStatus:YES];
}
}
- (BOOL)canAddModel:(ZLPhotoModel *)model
{
ZLImageNavigationController *nav = (ZLImageNavigationController *)self.navigationController;
ZLPhotoConfiguration *configuration =nav.configuration;
if (nav.arrSelectedModels.count >= configuration.maxSelectCount) {
ShowToastLong(GetLocalLanguageTextValue(ZLPhotoBrowserMaxSelectCountText), configuration.maxSelectCount);
return NO;
}
if (nav.arrSelectedModels.count > 0) {
ZLPhotoModel *sm = nav.arrSelectedModels.firstObject;
if (!configuration.allowMixSelect &&
((model.type < ZLAssetMediaTypeVideo && sm.type == ZLAssetMediaTypeVideo) || (model.type == ZLAssetMediaTypeVideo && sm.type < ZLAssetMediaTypeVideo))) {
ShowToastLong(@"%@", GetLocalLanguageTextValue(ZLPhotoBrowserCannotSelectVideo));
return NO;
}
}
if (![ZLPhotoManager judgeAssetisInLocalAblum:model.asset]) {
ShowToastLong(@"%@", GetLocalLanguageTextValue(ZLPhotoBrowseriCloudPhotoText));
return NO;
}
if (model.type == ZLAssetMediaTypeVideo && GetDuration(model.duration) > configuration.maxVideoDuration) {
ShowToastLong(GetLocalLanguageTextValue(ZLPhotoBrowserMaxVideoDurationText), configuration.maxVideoDuration);
return NO;
}
return YES;
}
#pragma mark - UICollectionViewDataSource
- (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView
{
return 1;
}
- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
{
if (self.allowTakePhoto) {
return self.arrDataSources.count + 1;
}
return self.arrDataSources.count;
}
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
ZLPhotoConfiguration *configuration = [(ZLImageNavigationController *)self.navigationController configuration];
if (self.allowTakePhoto && ((configuration.sortAscending && indexPath.row >= self.arrDataSources.count) || (!configuration.sortAscending && indexPath.row == 0))) {
ZLTakePhotoCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"ZLTakePhotoCell" forIndexPath:indexPath];
cell.layer.masksToBounds = YES;
cell.layer.cornerRadius = configuration.cellCornerRadio;
if (configuration.showCaptureImageOnTakePhotoBtn) {
[cell startCapture];
}
return cell;
}
ZLCollectionCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"ZLCollectionCell" forIndexPath:indexPath];
ZLPhotoModel *model;
if (!self.allowTakePhoto || configuration.sortAscending) {
model = self.arrDataSources[indexPath.row];
} else {
model = self.arrDataSources[indexPath.row-1];
}
zl_weakify(self);
__weak typeof(cell) weakCell = cell;
cell.selectedBlock = ^(BOOL selected) {
zl_strongify(weakSelf);
__strong typeof(weakCell) strongCell = weakCell;
ZLImageNavigationController *weakNav = (ZLImageNavigationController *)strongSelf.navigationController;
if (!selected) {
//选中
if ([strongSelf canAddModel:model]) {
if (![strongSelf shouldDirectEdit:model]) {
model.selected = YES;
[weakNav.arrSelectedModels addObject:model];
strongCell.btnSelect.selected = YES;
[strongSelf shouldDirectEdit:model];
}
}
} else {
strongCell.btnSelect.selected = NO;
model.selected = NO;
for (ZLPhotoModel *m in weakNav.arrSelectedModels) {
if ([m.asset.localIdentifier isEqualToString:model.asset.localIdentifier]) {
[weakNav.arrSelectedModels removeObject:m];
break;
}
}
}
if (configuration.showSelectedMask) {
strongCell.topView.hidden = !model.isSelected;
}
[strongSelf resetBottomBtnsStatus:YES];
};
cell.allSelectGif = configuration.allowSelectGif;
cell.allSelectLivePhoto = configuration.allowSelectLivePhoto;
cell.showSelectBtn = configuration.showSelectBtn;
cell.cornerRadio = configuration.cellCornerRadio;
cell.showMask = configuration.showSelectedMask;
cell.maskColor = configuration.selectedMaskColor;
cell.model = model;
return cell;
}
#pragma mark - UICollectionViewDelegate
- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
{
ZLPhotoConfiguration *configuration = [(ZLImageNavigationController *)self.navigationController configuration];
if (self.allowTakePhoto && ((configuration.sortAscending && indexPath.row >= self.arrDataSources.count) || (!configuration.sortAscending && indexPath.row == 0))) {
//拍照
[self takePhoto];
return;
}
NSInteger index = indexPath.row;
if (self.allowTakePhoto && !configuration.sortAscending) {
index = indexPath.row - 1;
}
ZLPhotoModel *model = self.arrDataSources[index];
if ([self shouldDirectEdit:model]) return;
UIViewController *vc = [self getMatchVCWithModel:model];
if (vc) {
[self showViewController:vc sender:nil];
}
}
- (BOOL)shouldDirectEdit:(ZLPhotoModel *)model
{
ZLImageNavigationController *nav = (ZLImageNavigationController *)self.navigationController;
ZLPhotoConfiguration *configuration = nav.configuration;
//当前点击图片可编辑
BOOL editImage = configuration.editAfterSelectThumbnailImage && configuration.allowEditImage && configuration.maxSelectCount == 1 && (model.type == ZLAssetMediaTypeImage || model.type == ZLAssetMediaTypeGif || model.type == ZLAssetMediaTypeLivePhoto);
//当前点击视频可编辑
BOOL editVideo = configuration.editAfterSelectThumbnailImage && configuration.allowEditVideo && model.type == ZLAssetMediaTypeVideo && configuration.maxSelectCount == 1 && round(model.asset.duration) >= configuration.maxEditVideoTime;
//当前未选择图片 或 已经选择了一张并且点击的是已选择的图片
BOOL flag = nav.arrSelectedModels.count == 0 || (nav.arrSelectedModels.count == 1 && [nav.arrSelectedModels.firstObject.asset.localIdentifier isEqualToString:model.asset.localIdentifier]);
if (editImage && flag) {
[nav.arrSelectedModels addObject:model];
[self btnEdit_Click:nil];
} else if (editVideo && flag) {
[nav.arrSelectedModels addObject:model];
[self btnEdit_Click:nil];
}
return configuration.editAfterSelectThumbnailImage && configuration.maxSelectCount == 1 && (configuration.allowEditImage || configuration.allowEditVideo);
}
/**
获取对应的vc
*/
- (UIViewController *)getMatchVCWithModel:(ZLPhotoModel *)model
{
ZLImageNavigationController *nav = (ZLImageNavigationController *)self.navigationController;
ZLPhotoConfiguration *configuration = nav.configuration;
if (nav.arrSelectedModels.count > 0) {
ZLPhotoModel *sm = nav.arrSelectedModels.firstObject;
if (!configuration.allowMixSelect &&
((model.type < ZLAssetMediaTypeVideo && sm.type == ZLAssetMediaTypeVideo) || (model.type == ZLAssetMediaTypeVideo && sm.type < ZLAssetMediaTypeVideo))) {
ShowToastLong(@"%@", GetLocalLanguageTextValue(ZLPhotoBrowserCannotSelectVideo));
return nil;
}
}
BOOL allowSelImage = !(model.type==ZLAssetMediaTypeVideo)?YES:configuration.allowMixSelect;
BOOL allowSelVideo = model.type==ZLAssetMediaTypeVideo?YES:configuration.allowMixSelect;
NSArray *arr = [ZLPhotoManager getPhotoInResult:self.albumListModel.result allowSelectVideo:allowSelVideo allowSelectImage:allowSelImage allowSelectGif:configuration.allowSelectGif allowSelectLivePhoto:configuration.allowSelectLivePhoto];
NSMutableArray *selIdentifiers = [NSMutableArray array];
for (ZLPhotoModel *m in nav.arrSelectedModels) {
[selIdentifiers addObject:m.asset.localIdentifier];
}
int i = 0;
BOOL isFind = NO;
for (ZLPhotoModel *m in arr) {
if ([m.asset.localIdentifier isEqualToString:model.asset.localIdentifier]) {
isFind = YES;
}
if ([selIdentifiers containsObject:m.asset.localIdentifier]) {
m.selected = YES;
}
if (!isFind) {
i++;
}
}
return [self getBigImageVCWithData:arr index:i];
}
- (void)takePhoto
{
ZLPhotoConfiguration *configuration = [(ZLImageNavigationController *)self.navigationController configuration];
if (![ZLPhotoManager haveCameraAuthority]) {
NSString *message = [NSString stringWithFormat:GetLocalLanguageTextValue(ZLPhotoBrowserNoCameraAuthorityText), kAPPName];
ShowAlert(message, self);
return;
}
if (!configuration.allowSelectImage &&
!configuration.allowRecordVideo) {
ShowAlert(@"allowSelectImage与allowRecordVideo不能同时为NO", self);
return;
}
if (configuration.useSystemCamera) {
//系统相机拍照
if ([UIImagePickerController isSourceTypeAvailable:
UIImagePickerControllerSourceTypeCamera]){
UIImagePickerController *picker = [[UIImagePickerController alloc] init];
picker.delegate = self;
picker.allowsEditing = NO;
picker.videoQuality = UIImagePickerControllerQualityTypeHigh;
picker.sourceType = UIImagePickerControllerSourceTypeCamera;
NSArray *a1 = configuration.allowSelectImage?@[(NSString *)kUTTypeImage]:@[];
NSArray *a2 = configuration.allowRecordVideo?@[(NSString *)kUTTypeMovie]:@[];
NSMutableArray *arr = [NSMutableArray array];
[arr addObjectsFromArray:a1];
[arr addObjectsFromArray:a2];
picker.mediaTypes = arr;
picker.videoMaximumDuration = configuration.maxRecordDuration;
[self showDetailViewController:picker sender:nil];
}
} else {
if (![ZLPhotoManager haveMicrophoneAuthority]) {
NSString *message = [NSString stringWithFormat:GetLocalLanguageTextValue(ZLPhotoBrowserNoMicrophoneAuthorityText), kAPPName];
ShowAlert(message, self);
return;
}
ZLCustomCamera *camera = [[ZLCustomCamera alloc] init];
camera.allowTakePhoto = configuration.allowSelectImage;
camera.allowRecordVideo = configuration.allowRecordVideo;
camera.sessionPreset = configuration.sessionPreset;
camera.videoType = configuration.exportVideoType;
camera.circleProgressColor = configuration.bottomBtnsNormalTitleColor;
camera.maxRecordDuration = configuration.maxRecordDuration;
zl_weakify(self);
camera.doneBlock = ^(UIImage *image, NSURL *videoUrl) {
zl_strongify(weakSelf);
[strongSelf saveImage:image videoUrl:videoUrl];
};
[self showDetailViewController:camera sender:nil];
}
}
#pragma mark - UIImagePickerControllerDelegate
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary<NSString *,id> *)info
{
[picker dismissViewControllerAnimated:YES completion:^{
UIImage *image = [info objectForKey:UIImagePickerControllerOriginalImage];
NSURL *url = [info valueForKey:UIImagePickerControllerMediaURL];
[self saveImage:image videoUrl:url];
}];
}
- (void)saveImage:(UIImage *)image videoUrl:(NSURL *)videoUrl
{
ZLProgressHUD *hud = [[ZLProgressHUD alloc] init];
[hud show];
zl_weakify(self);
if (image) {
[ZLPhotoManager saveImageToAblum:image completion:^(BOOL suc, PHAsset *asset) {
zl_strongify(weakSelf);
dispatch_async(dispatch_get_main_queue(), ^{
if (suc) {
ZLPhotoModel *model = [ZLPhotoModel modelWithAsset:asset type:ZLAssetMediaTypeImage duration:nil];
[strongSelf handleDataArray:model];
} else {
ShowToastLong(@"%@", GetLocalLanguageTextValue(ZLPhotoBrowserSaveImageErrorText));
}
[hud hide];
});
}];
} else if (videoUrl) {
[ZLPhotoManager saveVideoToAblum:videoUrl completion:^(BOOL suc, PHAsset *asset) {
zl_strongify(weakSelf);
dispatch_async(dispatch_get_main_queue(), ^{
if (suc) {
ZLPhotoModel *model = [ZLPhotoModel modelWithAsset:asset type:ZLAssetMediaTypeVideo duration:nil];
model.duration = [ZLPhotoManager getDuration:asset];
[strongSelf handleDataArray:model];
} else {
ShowToastLong(@"%@", GetLocalLanguageTextValue(ZLPhotoBrowserSaveVideoFailed));
}
[hud hide];
});
}];
}
}
- (void)handleDataArray:(ZLPhotoModel *)model
{
ZLImageNavigationController *nav = (ZLImageNavigationController *)self.navigationController;
ZLPhotoConfiguration *configuration = nav.configuration;
if (configuration.sortAscending) {
[self.arrDataSources addObject:model];
} else {
[self.arrDataSources insertObject:model atIndex:0];
}
if (configuration.maxSelectCount > 1 && nav.arrSelectedModels.count < configuration.maxSelectCount) {
model.selected = YES;
[nav.arrSelectedModels addObject:model];
self.albumListModel = [ZLPhotoManager getCameraRollAlbumList:configuration.allowSelectVideo allowSelectImage:configuration.allowSelectImage];
} else if (configuration.maxSelectCount == 1 && !nav.arrSelectedModels.count) {
if (![self shouldDirectEdit:model]) {
model.selected = YES;
[nav.arrSelectedModels addObject:model];
[self btnDone_Click:nil];
return;
}
}
[self.collectionView reloadData];
[self scrollToBottom];
[self resetBottomBtnsStatus:YES];
}
- (void)imagePickerControllerDidCancel:(UIImagePickerController *)picker
{
[picker dismissViewControllerAnimated:YES completion:nil];
}
- (void)getOriginalImageBytes
{
ZLImageNavigationController *nav = (ZLImageNavigationController *)self.navigationController;
zl_weakify(self);
[ZLPhotoManager getPhotosBytesWithArray:nav.arrSelectedModels completion:^(NSString *photosBytes) {
zl_strongify(weakSelf);
strongSelf.labPhotosBytes.text = [NSString stringWithFormat:@"(%@)", photosBytes];
}];
}
#pragma mark - UIViewControllerPreviewingDelegate
//!!!!: 3D Touch
- (UIViewController *)previewingContext:(id<UIViewControllerPreviewing>)previewingContext viewControllerForLocation:(CGPoint)location
{
NSIndexPath *indexPath = [self.collectionView indexPathForItemAtPoint:location];
if (!indexPath) {
return nil;
}
UICollectionViewCell *cell = [self.collectionView cellForItemAtIndexPath:indexPath];
if ([cell isKindOfClass:[ZLTakePhotoCell class]]) {
return nil;
}
//设置突出区域
previewingContext.sourceRect = [self.collectionView cellForItemAtIndexPath:indexPath].frame;
ZLForceTouchPreviewController *vc = [[ZLForceTouchPreviewController alloc] init];
ZLPhotoConfiguration *configuration = [(ZLImageNavigationController *)self.navigationController configuration];
NSInteger index = indexPath.row;
if (self.allowTakePhoto && !configuration.sortAscending) {
index = indexPath.row - 1;
}
ZLPhotoModel *model = self.arrDataSources[index];
vc.model = model;
vc.allowSelectGif = configuration.allowSelectGif;
vc.allowSelectLivePhoto = configuration.allowSelectLivePhoto;
vc.preferredContentSize = [self getSize:model];
return vc;
}
- (void)previewingContext:(id<UIViewControllerPreviewing>)previewingContext commitViewController:(UIViewController *)viewControllerToCommit
{
ZLPhotoModel *model = [(ZLForceTouchPreviewController *)viewControllerToCommit model];
UIViewController *vc = [self getMatchVCWithModel:model];
if (vc) {
[self showViewController:vc sender:self];
}
}
- (CGSize)getSize:(ZLPhotoModel *)model
{
CGFloat w = MIN(model.asset.pixelWidth, kViewWidth);
CGFloat h = w * model.asset.pixelHeight / model.asset.pixelWidth;
if (isnan(h)) return CGSizeZero;
if (h > kViewHeight || isnan(h)) {
h = kViewHeight;
w = h * model.asset.pixelWidth / model.asset.pixelHeight;
}
return CGSizeMake(w, h);
}
@end