forked from thermogl/TISwipeableTableView
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTISwipeableTableView.m
528 lines (387 loc) · 15.6 KB
/
TISwipeableTableView.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
519
520
521
522
523
524
525
526
527
528
//
// TISwipeableTableView.m
// TISwipeableTableView
//
// Created by Tom Irving on 28/05/2010.
// Copyright 2010 Tom Irving. All rights reserved.
//
#import "TISwipeableTableView.h"
#pragma mark -
#pragma mark TISwipeableTableView
#pragma mark -
//==========================================================
// - TISwipeableTableView
//==========================================================
@interface TISwipeableTableView (Private)
- (BOOL)supportsSwipingForCellAtPoint:(CGPoint)point;
- (void)highlightTouchedRow;
@end
@implementation TISwipeableTableView
@synthesize swipeDelegate;
@synthesize indexOfVisibleBackView;
@synthesize autoDeselect;
@synthesize allowedSwipeDirection;
NSInteger const kMinimumGestureLength = 18;
NSInteger const kMaximumVariance = 8;
#pragma mark -
#pragma mark Init
- (id)initWithFrame:(CGRect)frame style:(UITableViewStyle)style {
if ((self = [super initWithFrame:frame style:style])){
[self setDelaysContentTouches:NO];
autoDeselect = YES;
allowedSwipeDirection = TISwipeableTableViewDirectionLeft | TISwipeableTableViewDirectionRight;
}
return self;
}
#pragma mark -
#pragma mark Helpers
- (BOOL)supportsSwipingForCellAtPoint:(CGPoint)point {
NSIndexPath * indexPath = [self indexPathForRowAtPoint:point];
UITableViewCell * testCell = [self cellForRowAtIndexPath:indexPath];
BOOL supportsSwiping = NO;
if ([testCell isKindOfClass:[TISwipeableTableViewCell class]]){
supportsSwiping = ((TISwipeableTableViewCell *)testCell).shouldSupportSwiping;
}
// Thanks to Martin Destagnol (@mdestagnol) for this delegate method.
if (supportsSwiping && [swipeDelegate respondsToSelector:@selector(tableView:shouldSwipeCellAtIndexPath:)]){
supportsSwiping = [swipeDelegate tableView:self shouldSwipeCellAtIndexPath:indexPath];
}
return supportsSwiping;
}
- (void)highlightTouchedRow {
NSIndexPath *indexPath = [self indexPathForRowAtPoint:gestureStartPoint];
UITableViewCell * testCell = [self cellForRowAtIndexPath:indexPath];
if ([testCell isKindOfClass:[TISwipeableTableViewCell class]] && ![testCell isSelected]){
[self selectRowAtIndexPath:indexPath animated:NO scrollPosition:UITableViewScrollPositionNone];
}
}
#pragma mark -
#pragma mark Touches
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
UITouch * touch = [touches anyObject];
gestureStartPoint = [touch locationInView:self];
[self hideVisibleBackView:YES];
if (![self supportsSwipingForCellAtPoint:gestureStartPoint]) {
[super touchesBegan:touches withEvent:event];
}
}
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
if ([self supportsSwipingForCellAtPoint:gestureStartPoint]){
NSIndexPath *indexPath = [self indexPathForRowAtPoint:gestureStartPoint];
UITouch * touch = [touches anyObject];
CGPoint currentPosition = [touch locationInView:self];
CGFloat deltaX = currentPosition.x - gestureStartPoint.x;
CGFloat deltaY = fabsf(gestureStartPoint.y - currentPosition.y);
if (fabsf(deltaX) >= kMinimumGestureLength && deltaY <= kMaximumVariance){
TISwipeableTableViewDirection currentDirection = deltaX > 0 ? TISwipeableTableViewDirectionRight : TISwipeableTableViewDirectionLeft;
if ((currentDirection & allowedSwipeDirection) != TISwipeableTableViewDirectionRight && (currentDirection & allowedSwipeDirection) != TISwipeableTableViewDirectionLeft) {
// if the swipe direction isn't allowed
[super touchesMoved:touches withEvent:event];
return;
}
[self setScrollEnabled:NO];
TISwipeableTableViewCell * cell = (TISwipeableTableViewCell *)[self cellForRowAtIndexPath:indexPath];
if (cell.backView.hidden && [touch.view isKindOfClass:[TISwipeableTableViewCellView class]]){
[self deselectRowAtIndexPath:[self indexPathForSelectedRow] animated:NO];
[cell revealBackView:currentDirection];
if ([swipeDelegate respondsToSelector:@selector(tableView:didSwipeCellAtIndexPath:)]){
[swipeDelegate tableView:self didSwipeCellAtIndexPath:indexPath];
}
[self setIndexOfVisibleBackView:[self indexPathForCell:cell]];
}
[self setScrollEnabled:YES];
}
} else {
[super touchesMoved:touches withEvent:event];
}
}
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {
UITouch * touch = [touches anyObject];
NSIndexPath *indexPath = [self indexPathForRowAtPoint:gestureStartPoint];
if ([self supportsSwipingForCellAtPoint:gestureStartPoint]){
TISwipeableTableViewCell * cell = (TISwipeableTableViewCell *)[self cellForRowAtIndexPath:indexPath];
if ([[cell backView] isHidden]) {
if (![cell isSelected]) {
[self performSelector:@selector(highlightTouchedRow) withObject:nil];
}
if ([touch.view isKindOfClass:[TISwipeableTableViewCellView class]] && cell.isSelected
&& !cell.contentViewMoving && [self.delegate respondsToSelector:@selector(tableView:didSelectRowAtIndexPath:)]){
[self.delegate tableView:self didSelectRowAtIndexPath:indexPath];
}
}
if (autoDeselect) {
[self touchesCancelled:touches withEvent:event];
}
} else {
[super touchesEnded:touches withEvent:event];
}
}
- (void)touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event {
if ([self supportsSwipingForCellAtPoint:gestureStartPoint]){
UITableViewCell *cell = [self cellForRowAtIndexPath:[self indexPathForRowAtPoint:gestureStartPoint]];
NSIndexPath *indexPath = [self indexPathForRowAtPoint:gestureStartPoint];
if ([cell isSelected]) {
if ([[self delegate] respondsToSelector:@selector(tableView:willDeselectRowAtIndexPath:)]) {
indexPath = [[self delegate] tableView:self willDeselectRowAtIndexPath:indexPath];
}
[self deselectRowAtIndexPath:indexPath animated:NO];
if ([[self delegate] respondsToSelector:@selector(tableView:didDeselectRowAtIndexPath:)]) {
[[self delegate] tableView:self didDeselectRowAtIndexPath:indexPath];
}
}
} else {
[super touchesCancelled:touches withEvent:event];
}
}
#pragma mark -
#pragma mark Other Stuff
- (void)hideVisibleBackView:(BOOL)animated {
if (indexOfVisibleBackView){
if (animated){
[(TISwipeableTableViewCell *)[self cellForRowAtIndexPath:indexOfVisibleBackView] hideBackView];
}
else
{
[(TISwipeableTableViewCell *)[self cellForRowAtIndexPath:indexOfVisibleBackView] resetViews];
}
[self setIndexOfVisibleBackView:nil];
}
}
- (NSString *)description {
return [NSString stringWithFormat:@"<TISwipeableTableView %p 'Handling swiping like a boss since 1861'>", self];
}
- (void)dealloc {
[self setDelegate:nil];
[indexOfVisibleBackView release];
[super dealloc];
}
@end
#pragma mark -
#pragma mark TISwipeableTableViewCell
#pragma mark -
//==========================================================
// - TISwipeableTableViewCell
//==========================================================
@implementation TISwipeableTableViewCellView
- (void)drawRect:(CGRect)rect {
if (!self.hidden){
[(TISwipeableTableViewCell *)[self superview] drawContentView:rect];
}
else
{
[super drawRect:rect];
}
}
@end
@implementation TISwipeableTableViewCellBackView
- (void)drawRect:(CGRect)rect {
if (!self.hidden){
[(TISwipeableTableViewCell *)[self superview] drawBackView:rect];
}
else
{
[super drawRect:rect];
}
}
@end
@interface TISwipeableTableViewCell (Private)
- (void)initialSetup;
- (CAAnimationGroup *)bounceAnimationWithHideDuration:(CGFloat)hideDuration initialXOrigin:(CGFloat)originalX;
@end
@implementation TISwipeableTableViewCell
@synthesize backView;
@synthesize contentViewMoving;
@synthesize shouldSupportSwiping;
@synthesize shouldBounce;
#pragma mark -
#pragma mark Init / Overrides
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier {
if ((self = [super initWithStyle:style reuseIdentifier:reuseIdentifier])){
[self initialSetup];
}
return self;
}
- (id)initWithCoder:(NSCoder *)aDecoder {
if ((self = [super initWithCoder:aDecoder])){
[self initialSetup];
}
return self;
}
- (void)initialSetup {
[self setBackgroundColor:[UIColor clearColor]];
contentView = [[TISwipeableTableViewCellView alloc] initWithFrame:CGRectZero];
[contentView setClipsToBounds:YES];
[contentView setOpaque:YES];
[contentView setBackgroundColor:[UIColor clearColor]];
backView = [[TISwipeableTableViewCellBackView alloc] initWithFrame:CGRectZero];
[backView setOpaque:YES];
[backView setClipsToBounds:YES];
[backView setHidden:YES];
[backView setBackgroundColor:[UIColor clearColor]];
[self addSubview:backView];
[self addSubview:contentView];
[contentView release];
[backView release];
contentViewMoving = NO;
shouldSupportSwiping = YES;
shouldBounce = YES;
[self setSelected:NO];
[self hideBackView];
}
- (void)prepareForReuse {
[self resetViews];
[super prepareForReuse];
}
- (void)setFrame:(CGRect)aFrame {
[super setFrame:aFrame];
[backView setFrame:self.bounds];
[contentView setFrame:self.bounds];
}
- (void)setNeedsDisplay {
[super setNeedsDisplay];
[contentView setNeedsDisplay];
[backView setNeedsDisplay];
}
- (void)setAccessoryType:(UITableViewCellAccessoryType)accessoryType {
// Having an accessory buggers swiping right up, so we override.
// It's easier just to draw the accessory yourself.
}
- (void)setAccessoryView:(UIView *)accessoryView {
// Same as above.
}
- (void)setSelected:(BOOL)flag {
[super setSelected:flag];
[self setNeedsDisplay];
}
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
[super setSelected:selected animated:animated];
[self setNeedsDisplay];
}
#pragma mark -
#pragma mark Subclass Methods
// Implement the following in a subclass
- (void)drawContentView:(CGRect)rect {
}
- (void)drawBackView:(CGRect)rect {
}
// Optional implementation
- (void)backViewWillAppear {
}
- (void)backViewDidAppear {
}
- (void)backViewWillDisappear {
}
- (void)backViewDidDisappear {
}
//===============================//
#pragma mark -
#pragma mark Back View Show / Hide
- (void)revealBackView:(TISwipeableTableViewDirection)direction {
if (!contentViewMoving && backView.hidden){
contentViewMoving = YES;
[backView.layer setHidden:NO];
[backView setNeedsDisplay];
CGFloat toPositionX = direction == TISwipeableTableViewDirectionRight ? contentView.frame.size.width : -contentView.frame.size.width;
[contentView.layer setAnchorPoint:CGPointMake(0, 0.5)];
[contentView.layer setPosition:CGPointMake(toPositionX, contentView.layer.position.y)];
CABasicAnimation * animation = [CABasicAnimation animationWithKeyPath:@"position.x"];
[animation setRemovedOnCompletion:NO];
[animation setDelegate:self];
[animation setDuration:0.14];
[animation setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionLinear]];
[contentView.layer addAnimation:animation forKey:@"reveal"];
[self backViewWillAppear];
}
}
- (void)hideBackView {
if (!backView.hidden){
contentViewMoving = YES;
CGFloat hideDuration = 0.09;
[backView.layer setOpacity:0.0];
CABasicAnimation * hideAnimation = [CABasicAnimation animationWithKeyPath:@"opacity"];
[hideAnimation setFromValue:[NSNumber numberWithFloat:1.0]];
[hideAnimation setToValue:[NSNumber numberWithFloat:0.0]];
[hideAnimation setDuration:hideDuration];
[hideAnimation setRemovedOnCompletion:NO];
[hideAnimation setDelegate:self];
[backView.layer addAnimation:hideAnimation forKey:@"hide"];
CGFloat originalX = contentView.layer.position.x;
[contentView.layer setAnchorPoint:CGPointMake(0, 0.5)];
[contentView.layer setPosition:CGPointMake(0, contentView.layer.position.y)];
[contentView.layer addAnimation:[self bounceAnimationWithHideDuration:hideDuration initialXOrigin:originalX]
forKey:@"bounce"];
[self backViewWillDisappear];
}
}
- (void)resetViews {
[contentView.layer removeAllAnimations];
[backView.layer removeAllAnimations];
contentViewMoving = NO;
[contentView.layer setAnchorPoint:CGPointMake(0, 0.5)];
[contentView.layer setPosition:CGPointMake(0, contentView.layer.position.y)];
[backView.layer setHidden:YES];
[backView.layer setOpacity:1.0];
[self backViewDidDisappear];
}
- (void)animationDidStop:(CAAnimation *)anim finished:(BOOL)flag {
if (anim == [contentView.layer animationForKey:@"reveal"]){
[contentView.layer removeAnimationForKey:@"reveal"];
[self backViewDidAppear];
UITableView *tableView = (UITableView *) [self superview];
[tableView deselectRowAtIndexPath:[tableView indexPathForCell:self] animated:NO];
contentViewMoving = NO;
}
if (anim == [contentView.layer animationForKey:@"bounce"]){
[contentView.layer removeAnimationForKey:@"bounce"];
[self resetViews];
}
if (anim == [backView.layer animationForKey:@"hide"]){
[backView.layer removeAnimationForKey:@"hide"];
}
}
- (CAAnimationGroup *)bounceAnimationWithHideDuration:(CGFloat)hideDuration initialXOrigin:(CGFloat)originalX {
CABasicAnimation * animation0 = [CABasicAnimation animationWithKeyPath:@"position.x"];
[animation0 setFromValue:[NSNumber numberWithFloat:originalX]];
[animation0 setToValue:[NSNumber numberWithFloat:0]];
[animation0 setDuration:hideDuration];
[animation0 setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionLinear]];
[animation0 setBeginTime:0];
CAAnimationGroup * hideAnimations = [CAAnimationGroup animation];
[hideAnimations setAnimations:[NSArray arrayWithObject:animation0]];
CGFloat fullDuration = hideDuration;
if (shouldBounce){
CGFloat bounceDuration = 0.04;
CABasicAnimation * animation1 = [CABasicAnimation animationWithKeyPath:@"position.x"];
[animation1 setFromValue:[NSNumber numberWithFloat:0]];
[animation1 setToValue:[NSNumber numberWithFloat:-20]];
[animation1 setDuration:bounceDuration];
[animation1 setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionLinear]];
[animation1 setBeginTime:hideDuration];
CABasicAnimation * animation2 = [CABasicAnimation animationWithKeyPath:@"position.x"];
[animation2 setFromValue:[NSNumber numberWithFloat:-20]];
[animation2 setToValue:[NSNumber numberWithFloat:15]];
[animation2 setDuration:bounceDuration];
[animation2 setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionLinear]];
[animation2 setBeginTime:(hideDuration + bounceDuration)];
CABasicAnimation * animation3 = [CABasicAnimation animationWithKeyPath:@"position.x"];
[animation3 setFromValue:[NSNumber numberWithFloat:15]];
[animation3 setToValue:[NSNumber numberWithFloat:0]];
[animation3 setDuration:bounceDuration];
[animation3 setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionLinear]];
[animation3 setBeginTime:(hideDuration + (bounceDuration * 2))];
[hideAnimations setAnimations:[NSArray arrayWithObjects:animation0, animation1, animation2, animation3, nil]];
fullDuration = hideDuration + (bounceDuration * 3);
}
[hideAnimations setDuration:fullDuration];
[hideAnimations setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionLinear]];
[hideAnimations setDelegate:self];
[hideAnimations setRemovedOnCompletion:NO];
return hideAnimations;
}
#pragma mark -
#pragma mark Other
- (NSString *)description {
NSString * extraInfo = backView.hidden ? @"ContentView visible": @"BackView visible";
return [NSString stringWithFormat:@"<TISwipeableTableViewCell %p '%@'>", self, extraInfo];
}
@end