forked from darrarski/DRCollectionViewTableLayout-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDRCollectionViewTableLayout.m
518 lines (432 loc) · 22.3 KB
/
DRCollectionViewTableLayout.m
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
//
// DRCollectionViewTableLayout.m
// DRCollectionViewTableLayout
//
// Created by Dariusz Rybicki on 09.05.2014.
// Copyright (c) 2014 Darrarski. All rights reserved.
//
#import "DRCollectionViewTableLayout.h"
const NSInteger DRTopLeftColumnHeaderIndex = -1;
#pragma mark - DRCollectionViewTableLayoutInvalidationContext
@interface DRCollectionViewTableLayoutInvalidationContext : UICollectionViewLayoutInvalidationContext
@property (nonatomic, assign) BOOL keepCellsLayoutAttributes;
@property (nonatomic, assign) BOOL keepSupplementaryViewsLayoutAttributes;
@end
@implementation DRCollectionViewTableLayoutInvalidationContext
@end
#pragma mark - DRCollectionViewTableLayout
@interface DRCollectionViewTableLayout ()
@property (nonatomic, assign) CGSize computedContentSize;
@property (nonatomic, weak) id<DRCollectionViewTableLayoutDelegate> delegate;
@property (nonatomic, strong) NSArray *layoutAttributesForCells;
@property (nonatomic, strong) NSArray *layoutAttributesForSupplementaryViews;
@end
@implementation DRCollectionViewTableLayout
- (id)initWithDelegate:(id<DRCollectionViewTableLayoutDelegate>)delegate
{
if (self = [super init]) {
_delegate = delegate;
_verticalSectionSpacing = 50.f;
}
return self;
}
- (BOOL)stickyColumnHeadersInSection:(NSUInteger)section
{
if ([self.delegate respondsToSelector:@selector(collectionView:tableLayout:stickyColumnHeadersForSection:)]) {
return [self.delegate collectionView:self.collectionView tableLayout:self stickyColumnHeadersForSection:section];
}
else {
return NO;
}
}
- (BOOL)stickyRowHeadersInSection:(NSUInteger)section
{
if ([self.delegate respondsToSelector:@selector(collectionView:tableLayout:stickyRowHeadersForSection:)]) {
return [self.delegate collectionView:self.collectionView tableLayout:self stickyRowHeadersForSection:section];
}
else {
return NO;
}
}
- (BOOL)stickyColumnOrRowHeadersInAnySection
{
NSUInteger sectionsCount = [self.collectionView.dataSource numberOfSectionsInCollectionView:self.collectionView];
for (NSUInteger sectionIdx = 0; sectionIdx < sectionsCount; sectionIdx++) {
if ([self stickyColumnHeadersInSection:sectionIdx] || [self stickyRowHeadersInSection:sectionIdx]) {
return YES;
}
}
return NO;
}
- (CGFloat)widthForRowHeaderInSection:(NSUInteger)section
{
if ([self.delegate respondsToSelector:@selector(collectionView:tableLayout:widthForRowHeaderInSection:)]) {
return [self.delegate collectionView:self.collectionView tableLayout:self widthForRowHeaderInSection:section];
}
return 0.f;
}
- (CGFloat)heightForColumnHeaderInSection:(NSUInteger)section
{
if ([self.delegate respondsToSelector:@selector(collectionView:tableLayout:heightForColumnHeaderInSection:)]) {
return [self.delegate collectionView:self.collectionView tableLayout:self heightForColumnHeaderInSection:section];
}
return 0.f;
}
#pragma mark - Public methods
- (NSUInteger)columnNumberForIndexPath:(NSIndexPath *)indexPath
{
return (indexPath.row % [self.delegate collectionView:self.collectionView
tableLayout:self
numberOfColumnsInSection:indexPath.section]);
}
- (NSUInteger)rowNumberForIndexPath:(NSIndexPath *)indexPath
{
return floorf((float)indexPath.row / (float)[self.delegate collectionView:self.collectionView
tableLayout:self
numberOfColumnsInSection:indexPath.section]);
}
- (NSUInteger)columnNumberForHeaderIndexPath:(NSIndexPath *)indexPath
{
return indexPath.row;
}
- (NSUInteger)rowNumberForHeaderIndexPath:(NSIndexPath *)indexPath
{
NSUInteger columnsCount = [self.delegate collectionView:self.collectionView
tableLayout:self
numberOfColumnsInSection:indexPath.section];
return indexPath.row - columnsCount;
}
- (void)invalidateTableLayout
{
if (floor(NSFoundationVersionNumber) <= NSFoundationVersionNumber_iOS_6_1) {
_computedContentSize = CGSizeZero;
_layoutAttributesForCells = nil;
_layoutAttributesForSupplementaryViews = nil;
[super invalidateLayout];
}
else {
DRCollectionViewTableLayoutInvalidationContext *context = (DRCollectionViewTableLayoutInvalidationContext *)[super invalidationContextForBoundsChange:self.collectionView.bounds];
context.keepCellsLayoutAttributes = NO;
context.keepSupplementaryViewsLayoutAttributes = NO;
[self invalidateLayoutWithContext:context];
}
}
#pragma mark - Layout invalidation
+ (Class)invalidationContextClass
{
return [DRCollectionViewTableLayoutInvalidationContext class];
}
- (BOOL)shouldInvalidateLayoutForBoundsChange:(CGRect)newBounds
{
/**
* Workaround for floating (sticky) headers under iOS 6.
* This is due to custom invalidation contexts are not available under iOS 6.
*/
if (floor(NSFoundationVersionNumber) <= NSFoundationVersionNumber_iOS_6_1 &&
[self stickyColumnOrRowHeadersInAnySection]) {
_layoutAttributesForSupplementaryViews = nil;
}
return YES;
}
- (void)invalidateLayoutWithContext:(DRCollectionViewTableLayoutInvalidationContext *)context
{
[super invalidateLayoutWithContext:context];
if (![(DRCollectionViewTableLayoutInvalidationContext *)context keepCellsLayoutAttributes]) {
_computedContentSize = CGSizeZero;
if (_layoutAttributesForCells) {
_layoutAttributesForCells = nil;
}
}
if (![(DRCollectionViewTableLayoutInvalidationContext *)context keepSupplementaryViewsLayoutAttributes]) {
if (_layoutAttributesForSupplementaryViews) {
_layoutAttributesForSupplementaryViews = nil;
}
}
}
- (UICollectionViewLayoutInvalidationContext *)invalidationContextForBoundsChange:(CGRect)newBounds
{
DRCollectionViewTableLayoutInvalidationContext *context = (DRCollectionViewTableLayoutInvalidationContext *)[super invalidationContextForBoundsChange:newBounds];
context.keepCellsLayoutAttributes = YES;
context.keepSupplementaryViewsLayoutAttributes = ![self stickyColumnOrRowHeadersInAnySection];
return context;
}
#pragma mark - Layout methods
- (void)prepareLayout
{
[super prepareLayout];
// pre-build layout attributes if needed
[self layoutAttributesForCells];
[self layoutAttributesForSupplementaryViews];
}
- (CGSize)collectionViewContentSize
{
if (CGSizeEqualToSize(self.computedContentSize, CGSizeZero)) {
self.computedContentSize = self.collectionView.frame.size;
}
return self.computedContentSize;
}
- (NSArray *)layoutAttributesForCells
{
@synchronized(self) {
if (!_layoutAttributesForCells) {
NSMutableArray *layoutAttributes = [NSMutableArray new];
NSUInteger numberOfSections = [self.collectionView.dataSource numberOfSectionsInCollectionView:self.collectionView];
for (NSUInteger sectionIdx = 0; sectionIdx < numberOfSections; sectionIdx++) {
NSUInteger numberOfItemsInSection = [self.collectionView.dataSource collectionView:self.collectionView
numberOfItemsInSection:sectionIdx];
for (NSUInteger itemIdx = 0; itemIdx < numberOfItemsInSection; itemIdx++) {
[layoutAttributes addObject:[self layoutAttributesForItemAtIndexPath:[NSIndexPath indexPathForItem:itemIdx
inSection:sectionIdx]]];
}
}
_layoutAttributesForCells = [NSArray arrayWithArray:layoutAttributes];
}
return _layoutAttributesForCells;
}
}
- (NSArray *)layoutAttributesForSupplementaryViews
{
@synchronized(self) {
if (!_layoutAttributesForSupplementaryViews) {
NSMutableArray *layoutAttributes = [NSMutableArray new];
NSUInteger sectionsCount = [self.collectionView.dataSource numberOfSectionsInCollectionView:self.collectionView];
for (NSUInteger sectionIdx = 0; sectionIdx < sectionsCount; sectionIdx++) {
NSUInteger columnsCount = [self.delegate collectionView:self.collectionView
tableLayout:self
numberOfColumnsInSection:sectionIdx];
BOOL hasColumnHeader = ([self heightForColumnHeaderInSection:sectionIdx] > 0);
if (hasColumnHeader) {
for (NSUInteger columnIdx = 0; columnIdx < columnsCount; columnIdx++) {
[layoutAttributes addObject:[self layoutAttributesForSupplementaryViewOfKind:DRCollectionViewTableLayoutSupplementaryViewColumnHeader
atIndexPath:[NSIndexPath indexPathForItem:columnIdx
inSection:sectionIdx]]];
}
}
BOOL hasRowHeader = ([self widthForRowHeaderInSection:sectionIdx] > 0);
if (hasRowHeader) {
NSUInteger itemsCount = [self.collectionView.dataSource collectionView:self.collectionView
numberOfItemsInSection:sectionIdx];
NSUInteger rowsCount = ceilf((float)itemsCount / (float)columnsCount);
for (NSUInteger rowIdx = 0; rowIdx < rowsCount; rowIdx++) {
[layoutAttributes addObject:[self layoutAttributesForSupplementaryViewOfKind:DRCollectionViewTableLayoutSupplementaryViewRowHeader
atIndexPath:[NSIndexPath indexPathForItem:columnsCount + rowIdx
inSection:sectionIdx]]];
}
}
if (hasColumnHeader && hasRowHeader && self.hasTopLeftColumnHeaderView) {
[layoutAttributes addObject:[self layoutAttributesForSupplementaryViewOfKind:DRCollectionViewTableLayoutSupplementaryViewColumnHeader
atIndexPath:[NSIndexPath indexPathForItem:DRTopLeftColumnHeaderIndex
inSection:sectionIdx]]];
}
}
_layoutAttributesForSupplementaryViews = [NSArray arrayWithArray:layoutAttributes];
}
return _layoutAttributesForSupplementaryViews;
}
}
- (NSArray *)layoutAttributesForElementsInRect:(CGRect)rect
{
NSMutableArray *layoutAttributes = [NSMutableArray new];
[layoutAttributes addObjectsFromArray:[self.layoutAttributesForCells filteredArrayUsingPredicate:[NSPredicate predicateWithBlock:^BOOL(UICollectionViewLayoutAttributes *attributes, NSDictionary *bindings) {
return (CGRectIntersectsRect(rect, attributes.frame));
}]]];
[layoutAttributes addObjectsFromArray:[self.layoutAttributesForSupplementaryViews filteredArrayUsingPredicate:[NSPredicate predicateWithBlock:^BOOL(UICollectionViewLayoutAttributes *attributes, NSDictionary *bindings) {
return (CGRectIntersectsRect(rect, attributes.frame));
}]]];
return [NSArray arrayWithArray:layoutAttributes];
}
- (UICollectionViewLayoutAttributes *)layoutAttributesForItemAtIndexPath:(NSIndexPath *)indexPath
{
UICollectionViewLayoutAttributes *currentItemAttributes = [UICollectionViewLayoutAttributes layoutAttributesForCellWithIndexPath:indexPath];
// get current column and row indexes
NSUInteger currentColumn = [self columnNumberForIndexPath:indexPath];
NSUInteger currentRow = [self rowNumberForIndexPath:indexPath];
// compute x position
CGFloat x = 0;
CGFloat rowHeaderWidth = [self widthForRowHeaderInSection:indexPath.section];
if (rowHeaderWidth > 0) {
x += rowHeaderWidth + (self.horizontalSpacing / 2.f);
}
for (NSUInteger columnIdx = 0; columnIdx < currentColumn; columnIdx++) {
x += [self.delegate collectionView:self.collectionView
tableLayout:self
widthForColumn:columnIdx
inSection:indexPath.section];
x += self.horizontalSpacing / 2.f;
}
// compute y position
CGFloat y = 0;
for (NSUInteger sectionIdx = 0; sectionIdx <= indexPath.section; sectionIdx++) {
CGFloat headerHeight = [self heightForColumnHeaderInSection:sectionIdx];
if (headerHeight > 0) {
y += headerHeight + (self.verticalSpacing / 2.f);
}
NSUInteger lastRowIdx;
if (sectionIdx < indexPath.section) {
lastRowIdx = [self rowNumberForIndexPath:[NSIndexPath indexPathForItem:[self.collectionView.dataSource collectionView:self.collectionView
numberOfItemsInSection:sectionIdx]
inSection:sectionIdx]];
}
else {
lastRowIdx = currentRow;
}
for (NSUInteger rowIdx = 0; rowIdx < lastRowIdx; rowIdx++) {
y += [self.delegate collectionView:self.collectionView
tableLayout:self
heightForRow:rowIdx
inSection:sectionIdx];
y += self.verticalSpacing / 2.f;
}
}
y += (indexPath.section * self.verticalSectionSpacing);
// compute item width
CGFloat width = [self.delegate collectionView:self.collectionView
tableLayout:self
widthForColumn:currentColumn
inSection:indexPath.section];
// compute item height
CGFloat height = [self.delegate collectionView:self.collectionView
tableLayout:self
heightForRow:currentRow
inSection:indexPath.section];
// set attributes frame
currentItemAttributes.frame = CGRectMake(x, y, width, height);
// update content size width if needed
if (self.computedContentSize.width < x + width) {
self.computedContentSize = CGSizeMake(x + width, self.computedContentSize.height);
}
// update content size height if needed
if (self.computedContentSize.height < y + height) {
self.computedContentSize = CGSizeMake(self.computedContentSize.width, y + height);
}
return currentItemAttributes;
}
- (UICollectionViewLayoutAttributes *)layoutAttributesForSupplementaryViewOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath
{
UICollectionViewLayoutAttributes *currentItemAttributes = [UICollectionViewLayoutAttributes layoutAttributesForSupplementaryViewOfKind:kind withIndexPath:indexPath];
if ([kind isEqualToString:DRCollectionViewTableLayoutSupplementaryViewColumnHeader]) {
// get header column index
NSUInteger currentColumn = [self columnNumberForHeaderIndexPath:indexPath];
// compute height
CGFloat height = [self heightForColumnHeaderInSection:indexPath.section];
CGFloat width;
CGFloat x = 0;
if (indexPath.item == DRTopLeftColumnHeaderIndex) {
x = 0;
width = [self.delegate collectionView:self.collectionView
tableLayout:self
widthForRowHeaderInSection:indexPath.section];
} else {
// compute x position
CGFloat rowHeaderWidth = [self widthForRowHeaderInSection:indexPath.section];
if (rowHeaderWidth > 0) {
x += rowHeaderWidth + (self.horizontalSpacing / 2.f);
}
for (NSUInteger columnIdx = 0; columnIdx < currentColumn; columnIdx++) {
x += [self.delegate collectionView:self.collectionView
tableLayout:self
widthForColumn:columnIdx
inSection:indexPath.section];
x += self.horizontalSpacing / 2.f;
}
// compute width
width = [self.delegate collectionView:self.collectionView
tableLayout:self
widthForColumn:indexPath.row
inSection:indexPath.section];
}
// compute y position
CGFloat y = 0;
for (NSUInteger sectionIdx = 0; sectionIdx < indexPath.section; sectionIdx++) {
y += [self heightForColumnHeaderInSection:sectionIdx];
y += self.verticalSpacing / 2.f;
NSUInteger lastRowIdx = [self rowNumberForIndexPath:[NSIndexPath indexPathForItem:[self.collectionView.dataSource collectionView:self.collectionView
numberOfItemsInSection:sectionIdx]
inSection:sectionIdx]];
for (NSUInteger rowIdx = 0; rowIdx < lastRowIdx; rowIdx++) {
y += [self.delegate collectionView:self.collectionView
tableLayout:self
heightForRow:rowIdx
inSection:sectionIdx];
y += self.verticalSpacing / 2.f;
}
}
y += (indexPath.section * self.verticalSectionSpacing);
// stick column header to top edge
if ([self stickyColumnHeadersInSection:indexPath.section]) {
CGFloat maxY = 0;
for (NSUInteger sectionIdx = 0; sectionIdx <= indexPath.section; sectionIdx++) {
CGFloat headerHeight = [self heightForColumnHeaderInSection:sectionIdx];
if (headerHeight > 0) {
maxY += headerHeight + (self.verticalSpacing / 2.f);
}
NSUInteger lastRowIdx = [self rowNumberForIndexPath:[NSIndexPath indexPathForItem:[self.collectionView.dataSource collectionView:self.collectionView
numberOfItemsInSection:sectionIdx]
inSection:sectionIdx]];
for (NSUInteger rowIdx = 0; rowIdx < lastRowIdx; rowIdx++) {
maxY += [self.delegate collectionView:self.collectionView
tableLayout:self
heightForRow:rowIdx
inSection:sectionIdx];
maxY += self.verticalSpacing / 2.f;
}
}
maxY += (indexPath.section * self.verticalSectionSpacing);
maxY -= height + (self.verticalSpacing / 2.f);
CGFloat stickyY = self.collectionView.contentOffset.y + self.collectionView.contentInset.top;
if (y < stickyY) {
y = MIN(maxY, stickyY);
}
}
// set attributes frame and zIndex
currentItemAttributes.frame = CGRectMake(x, y, width, height);
currentItemAttributes.zIndex = 101;
}
else if ([kind isEqualToString:DRCollectionViewTableLayoutSupplementaryViewRowHeader]) {
// x positon
CGFloat x = 0;
// stick header to left edge
if ([self stickyRowHeadersInSection:indexPath.section]) {
CGFloat stickyX = CGRectGetMinX(self.collectionView.bounds) + self.collectionView.contentInset.left;
if (x < stickyX)
x = stickyX;
}
// compute y position
CGFloat y = 0;
for (NSUInteger sectionIdx = 0; sectionIdx <= indexPath.section; sectionIdx++) {
CGFloat headerHeight = [self heightForColumnHeaderInSection:sectionIdx];
if (headerHeight > 0) {
y += headerHeight + (self.verticalSpacing / 2.f);
}
NSUInteger lastRowIdx;
if (sectionIdx == indexPath.section) {
lastRowIdx = [self rowNumberForHeaderIndexPath:indexPath];
}
else {
lastRowIdx = [self rowNumberForIndexPath:[NSIndexPath indexPathForItem:[self.collectionView.dataSource collectionView:self.collectionView
numberOfItemsInSection:sectionIdx]
inSection:sectionIdx]];
}
for (NSUInteger rowIdx = 0; rowIdx < lastRowIdx; rowIdx++) {
y += [self.delegate collectionView:self.collectionView
tableLayout:self
heightForRow:rowIdx
inSection:sectionIdx];
y += self.verticalSpacing / 2.f;
}
}
y += (indexPath.section * self.verticalSectionSpacing);
// compute width
CGFloat width = [self widthForRowHeaderInSection:indexPath.section];
// compute height
CGFloat height = [self.delegate collectionView:self.collectionView
tableLayout:self
heightForRow:[self rowNumberForHeaderIndexPath:indexPath]
inSection:indexPath.section];
// set attributes frame and zIndex
currentItemAttributes.frame = CGRectMake(x, y, width, height);
currentItemAttributes.zIndex = 100;
}
return currentItemAttributes;
}
@end