-
Notifications
You must be signed in to change notification settings - Fork 14
/
CHGridView.m
479 lines (366 loc) · 13.6 KB
/
CHGridView.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
//
// CHGridView.m
//
// RELEASED UNDER THE MIT LICENSE
//
// Created by Cameron Kenly Hunt on 2/18/10.
// Copyright 2010 Cameron Kenley Hunt All rights reserved.
// http://cameron.io/project/chgridview
//
#import "CHGridView.h"
#import "CHGridLayoutTile.h"
@interface CHGridView()
- (void)loadVisibleSectionTitlesForSectionRange:(CHSectionRange)range;
- (void)loadVisibleTileForIndexPath:(CHGridIndexPath)indexPath withRect:(CGRect)r;
- (void)reuseHiddenTiles;
- (void)removeSectionTitleNotInRange:(CHSectionRange)range;
- (void)removeAllSubviews;
- (NSMutableArray *)tilesForSection:(int)section;
- (NSMutableArray *)tilesFromIndex:(int)startIndex toIndex:(int)endIndex inSection:(int)section;
- (CHSectionHeaderView *)sectionHeaderViewForSection:(int)section;
- (void)calculateSectionTitleOffset;
@end
@implementation CHGridView
@synthesize dataSource, centerTilesInGrid, allowsSelection, padding, preLoadMultiplier, rowHeight, perLine, sectionTitleHeight;
- (id)init{
return [self initWithFrame:CGRectZero];
}
- (id)initWithFrame:(CGRect)frame{
if(self = [super initWithFrame:frame]){
if(visibleTiles == nil)
visibleTiles = [[NSMutableArray alloc] init];
if(visibleSectionHeaders == nil)
visibleSectionHeaders = [[NSMutableArray alloc] init];
if(reusableTiles == nil)
reusableTiles = [[NSMutableArray alloc] init];
if(layout == nil)
layout = [[CHGridLayout alloc] init];
if(sectionCounts == nil)
sectionCounts = [[NSMutableArray alloc] init];
sections = 1;
allowsSelection = YES;
centerTilesInGrid = NO;
padding = CGSizeMake(10.0f, 10.0f);
rowHeight = 100.0f;
perLine = 5;
sectionTitleHeight = 25.0f;
preLoadMultiplier = 6.0f;
[self setBackgroundColor:[UIColor whiteColor]];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(reuseHiddenTiles) name:UIApplicationDidReceiveMemoryWarningNotification object:nil];
}
return self;
}
- (void)dealloc {
[[NSNotificationCenter defaultCenter] removeObserver:self name:UIApplicationDidReceiveMemoryWarningNotification object:nil];
[sectionCounts release];
[layout release];
[reusableTiles release];
[visibleSectionHeaders release];
[visibleTiles release];
[super dealloc];
}
#pragma mark loading methods
- (void)loadVisibleSectionTitlesForSectionRange:(CHSectionRange)range{
CGRect b = self.bounds;
if(sections <= 1) return;
int i;
for (i = range.start; i <= range.end; i++) {
BOOL found = NO;
for(CHSectionHeaderView *header in visibleSectionHeaders){
if(header.section == i) found = YES;
}
if(!found){
CGFloat yCoordinate = [layout yCoordinateForTitleOfSection:i];
CHSectionHeaderView *sectionHeader = nil;
if([[self delegate] respondsToSelector:@selector(titleViewForHeaderOfSection:inGridView:)]){
sectionHeader = [[self delegate] headerViewForSection:i inGridView:self];
[sectionHeader setFrame:CGRectMake(b.origin.x, yCoordinate, b.size.width, sectionTitleHeight)];
}else{
sectionHeader = [[CHSectionHeaderView alloc] initWithFrame:CGRectMake(b.origin.x, yCoordinate, b.size.width, sectionTitleHeight)];
if([dataSource respondsToSelector:@selector(titleForHeaderOfSection:inGridView:)])
[sectionHeader setTitle:[dataSource titleForHeaderOfSection:i inGridView:self]];
}
[sectionHeader setYCoordinate:yCoordinate];
[sectionHeader setSection:i];
[sectionHeader setAutoresizingMask:(UIViewAutoresizingFlexibleWidth)];
if(self.dragging || self.decelerating)
[self insertSubview:sectionHeader atIndex:self.subviews.count - 1];
else
[self insertSubview:sectionHeader atIndex:self.subviews.count];
[visibleSectionHeaders addObject:sectionHeader];
[sectionHeader release];
}
}
[self removeSectionTitleNotInRange:range];
}
- (void)loadVisibleTileForIndexPath:(CHGridIndexPath)indexPath withRect:(CGRect)r{
for(CHTileView *tile in visibleTiles){
CHGridIndexPath tileIndex = tile.indexPath;
if(tileIndex.section == indexPath.section && tileIndex.tileIndex == indexPath.tileIndex){
return;
}
}
CHTileView *tile = [dataSource tileForIndexPath:indexPath inGridView:self];
[tile setIndexPath:indexPath];
[tile setSelected:NO];
if([[self delegate] respondsToSelector:@selector(sizeForTileAtIndex:inGridView:)] && centerTilesInGrid){
CGSize size = [[self delegate] sizeForTileAtIndex:indexPath inGridView:self];
CGRect centeredRect = [layout centerRect:CGRectMake(0.0f, 0.0f, size.width, size.height) inLargerRect:r roundUp:NO];
centeredRect.origin.y += r.origin.y;
centeredRect.origin.x += r.origin.x;
[tile setFrame:centeredRect];
[tile setAutoresizingMask:(UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin)];
}else{
[tile setFrame:r];
[tile setAutoresizingMask:(UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin | UIViewAutoresizingFlexibleWidth)];
}
[tile setBackgroundColor:self.backgroundColor];
[self insertSubview:tile atIndex:0];
[visibleTiles addObject:tile];
}
- (void)reuseHiddenTiles{
NSMutableArray *toReuse = [[NSMutableArray alloc] init];
CGRect b = self.bounds;
CGFloat contentOffsetY = self.contentOffset.y;
float pixelMargin = rowHeight * ([layout preLoadMultiplier]);
CGFloat firstY = (b.size.height + contentOffsetY + pixelMargin);
CGFloat secondY = contentOffsetY - pixelMargin;
for(CHTileView *tile in visibleTiles){
CGRect r = tile.frame;
if(r.origin.y > firstY || r.origin.y + r.size.height < secondY){
[toReuse addObject:tile];
if(reusableTiles.count < maxReusable) [reusableTiles addObject:tile];
}
}
[visibleTiles removeObjectsInArray:toReuse];
[toReuse release];
}
- (void)removeSectionTitleNotInRange:(CHSectionRange)range{
NSMutableArray *toDelete = [NSMutableArray array];
for (CHSectionHeaderView *header in visibleSectionHeaders) {
int s = header.section;
if(s < range.start || s > range.end){
[toDelete addObject:header];
}
}
[toDelete makeObjectsPerformSelector:@selector(removeFromSuperview)];
[visibleSectionHeaders removeObjectsInArray:toDelete];
}
- (void)reloadData{
[self reloadDataAndLayoutUpdateNeeded:YES];
}
- (void)reloadDataAndLayoutUpdateNeeded:(BOOL)layoutNeeded{
if(dataSource == nil) return;
[self removeAllSubviews];
[visibleTiles removeAllObjects];
[visibleSectionHeaders removeAllObjects];
CGRect b = [self bounds];
if([dataSource respondsToSelector:@selector(numberOfSectionsInGridView:)]){
sections = [dataSource numberOfSectionsInGridView:self];
if(sections == 0) sections = 1;
}else {
sections = 1;
}
[sectionCounts removeAllObjects];
if(layoutNeeded){
[layout setGridWidth:b.size.width];
[layout setPadding:padding];
[layout setPerLine:perLine];
[layout setPreLoadMultiplier:preLoadMultiplier];
[layout setRowHeight:rowHeight];
[layout setSectionTitleHeight:sectionTitleHeight];
[layout setSections:sections];
int i;
for(i = 0; i < sections; i++){
int numberInSection = [dataSource numberOfTilesInSection:i GridView:self];
[sectionCounts addObject:[NSNumber numberWithInt:numberInSection]];
[layout setNumberOfTiles:numberInSection ForSectionIndex:i];
}
[layout updateLayout];
}
[self setNeedsLayout];
maxReusable = ceilf((self.bounds.size.height / rowHeight) * perLine) * 2;
if([layout contentHeight] > b.size.height)
[self setContentSize:CGSizeMake(b.size.width, [layout contentHeight])];
else
[self setContentSize:CGSizeMake(b.size.width, b.size.height + 1.0)];
}
- (CHTileView *)dequeueReusableTileWithIdentifier:(NSString *)identifier{
CHTileView *foundTile = nil;
BOOL found = NO;
for(CHTileView *tile in reusableTiles){
if(!found && [[tile reuseIdentifier] isEqualToString:identifier]){
foundTile = tile;
found = YES;
}
}
if(foundTile){
[[foundTile retain] autorelease];
[reusableTiles removeObject:foundTile];
}
return foundTile;
}
#pragma mark view and layout methods
- (void)layoutSubviews{
if(dataSource == nil) return;
CGRect b = [self bounds];
[self reuseHiddenTiles];
CGFloat contentOffsetY = self.contentOffset.y;
CGFloat pixelMargin = rowHeight * [layout preLoadMultiplier];
CGFloat firstY = (b.size.height + contentOffsetY + pixelMargin);
CGFloat secondY = contentOffsetY - pixelMargin;
BOOL hasSections = (sections > 1);
if(hasSections){
CHSectionRange sectionRange = [layout sectionRangeForContentOffset:contentOffsetY andHeight:b.size.height];
[self loadVisibleSectionTitlesForSectionRange:sectionRange];
[self calculateSectionTitleOffset];
}
for(CHGridLayoutTile *tile in [layout justTiles]){
CGRect r = [tile rect];
if(r.origin.y < firstY && r.origin.y + r.size.height > secondY){
[self loadVisibleTileForIndexPath:tile.indexPath withRect:r];
}
}
//if([[self delegate] respondsToSelector:@selector(visibleTilesChangedTo:)]) [[self delegate] visibleTilesChangedTo:visibleTiles.count];
}
- (void)removeAllSubviews{
[visibleTiles makeObjectsPerformSelector:@selector(removeFromSuperview)];
[visibleSectionHeaders makeObjectsPerformSelector:@selector(removeFromSuperview)];
[reusableTiles makeObjectsPerformSelector:@selector(removeFromSuperview)];
}
#pragma mark tiles accessor methods
- (CHTileView *)tileForIndexPath:(CHGridIndexPath)indexPath{
CHTileView *foundTile = nil;
for(CHTileView *tile in visibleTiles){
if(tile.indexPath.section == indexPath.section && tile.indexPath.tileIndex == indexPath.tileIndex)
foundTile = tile;
}
return foundTile;
}
- (NSMutableArray *)tilesForSection:(int)section{
NSMutableArray *array = [NSMutableArray array];
for(CHTileView *tile in visibleTiles){
if(tile.indexPath.section == section){
[array addObject:tile];
}
}
if(array.count > 0) return array;
return nil;
}
- (NSMutableArray *)tilesFromIndex:(int)startIndex toIndex:(int)endIndex inSection:(int)section{
NSMutableArray *array = [NSMutableArray array];
for(CHTileView *tile in visibleTiles){
if(tile.indexPath.section == section && tile.indexPath.tileIndex >= startIndex && tile.indexPath.tileIndex <= endIndex){
[array addObject:tile];
}
}
if(array.count > 0) return array;
return nil;
}
#pragma mark section title accessor methods
- (CHSectionHeaderView *)sectionHeaderViewForSection:(int)section{
CHSectionHeaderView *headerView = nil;
for(CHSectionHeaderView *header in visibleSectionHeaders){
if([header section] == section) headerView = header;
}
return headerView;
}
#pragma mark indexPath accessor methods
- (CHGridIndexPath)indexPathForPoint:(CGPoint)point{
return CHGridIndexPathMake(0, 0);
}
#pragma mark tile scrolling methods
- (void)scrollToTileAtIndexPath:(CHGridIndexPath)indexPath animated:(BOOL)animated{
CGRect r = [layout tileFrameForIndexPath:indexPath];
[self scrollRectToVisible:r animated:animated];
}
#pragma mark selection methods
- (void)deselectTileAtIndexPath:(CHGridIndexPath)indexPath{
for(CHTileView *tile in visibleTiles){
if(tile.indexPath.section == indexPath.section && tile.indexPath.tileIndex == indexPath.tileIndex){
[tile setSelected:NO];
selectedTile = nil;
}
}
}
- (void)deselectSelectedTile{
if(selectedTile){
[self deselectTileAtIndexPath:selectedTile.indexPath];
selectedTile = nil;
}
}
#pragma mark property setters and getters
- (id<CHGridViewDelegate>)delegate {
return (id<CHGridViewDelegate>)[super delegate];
}
- (void)setDelegate:(id<UIScrollViewDelegate,CHGridViewDelegate>)d{
[super setDelegate:d];
}
- (void)setDataSource:(id<CHGridViewDataSource>)d{
dataSource = d;
}
- (void)setCenterTilesInGrid:(BOOL)b{
centerTilesInGrid = b;
[self setNeedsLayout];
}
- (void)setAllowsSelection:(BOOL)allows{
allowsSelection = allows;
}
#pragma mark touch methods
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{
[super touchesBegan:touches withEvent:event];
UITouch *touch = [[event allTouches] anyObject];
CGPoint location = [touch locationInView:self];
UIView *view = [self hitTest:location withEvent:event];
if([view isKindOfClass:[CHTileView class]] && allowsSelection){
if(selectedTile)
[self deselectTileAtIndexPath:selectedTile.indexPath];
selectedTile = (CHTileView *)view;
[selectedTile setSelected:YES];
}
}
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event{
[super touchesMoved:touches withEvent:event];
if(self.dragging || self.tracking || self.decelerating && allowsSelection){
if(selectedTile != nil){
[selectedTile setSelected:NO];
selectedTile = nil;
}
}
}
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event{
[super touchesEnded:touches withEvent:event];
UITouch *touch = [[event allTouches] anyObject];
CGPoint location = [touch locationInView:self];
UIView *view = [self hitTest:location withEvent:event];
if(selectedTile != nil && [selectedTile isEqual:view] && allowsSelection){
if([[self delegate] respondsToSelector:@selector(selectedTileAtIndexPath:inGridView:)])
[[self delegate] selectedTileAtIndexPath:[selectedTile indexPath] inGridView:self];
}
}
#pragma mark section title view offset
- (void)calculateSectionTitleOffset{
float offset = self.contentOffset.y;
for(CHSectionHeaderView *header in visibleSectionHeaders){
CGRect f = [header frame];
float sectionY = [header yCoordinate];
if(sectionY <= offset && offset > 0.0f){
f.origin.y = offset;
if(offset <= 0.0f) f.origin.y = sectionY;
CHSectionHeaderView *sectionTwo = [self sectionHeaderViewForSection:header.section + 1];
if(sectionTwo != nil){
CGFloat sectionTwoHeight = sectionTwo.frame.size.height;
CGFloat sectionTwoY = sectionTwo.yCoordinate;
if((offset + sectionTwoHeight) >= sectionTwoY){
f.origin.y = sectionTwoY - sectionTwoHeight;
}
}
}else{
f.origin.y = sectionY;
}
if(f.origin.y <= offset) [header setOpaque:NO];
else [header setOpaque:YES];
[header setFrame:f];
}
}
@end