-
Notifications
You must be signed in to change notification settings - Fork 27
/
AB_MultiBackButtonItem.m
487 lines (396 loc) · 18.1 KB
/
AB_MultiBackButtonItem.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
//
// AB_MultiBackButtonItem.m
//
// Anders Borum @palmin
//
// The MIT License (MIT)
//
// Copyright (c) 2015 Anders Borum
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
#import <objc/message.h>
#import "AB_MultiBackButtonItem.h"
#define RotateChevron NO
// background color matches popup that contains the table
#define BackgroundColor [UIColor colorWithRed:247.0/255 green:247.0/255 blue:248.0/255 alpha:1]
#define PopupWidth 290
@interface AB_MultiBackButtonView : UIButton <UITableViewDataSource, UITableViewDelegate, UIGestureRecognizerDelegate,
UIAdaptivePresentationControllerDelegate, UIPopoverPresentationControllerDelegate> {
NSTimeInterval touchStart;
CGPoint pointStart;
BOOL significantMovement;
NSIndexPath* hoverIndexPath; // the one selected because finger is above it
}
@property (nonatomic, strong) UIImageView* chevron;
//@property (nonatomic, strong) UILabel* label;
@property (nonatomic, strong) AB_MultiBackButtonItem* item;
@property (nonatomic, weak) UIViewController* viewController;
@property (nonatomic, strong) UITableViewController* tableController;
@property (nonatomic, strong) NSArray* cells;
@end
@implementation AB_MultiBackButtonView
static NSString* titleForViewController(UIViewController* controller) {
// make sure view is loaded
[controller view];
NSString* title = controller.multiBackButtonTitle;
if(title == nil) {
title = controller.navigationItem.title;
if(title == nil) title = controller.title;
}
return title;
}
static UIImage* imageForController(UIViewController* controller) {
// make sure view is loaded
[controller view];
return controller.multiBackButtonImage;
}
+(UIImage*)chevronImage {
static UIImage* _image = nil;
if(_image == nil) {
UIGraphicsBeginImageContextWithOptions(CGSizeMake(13, 21), NO, 0);
//// Bezier Drawing
UIBezierPath* bezierPath = UIBezierPath.bezierPath;
[bezierPath moveToPoint: CGPointMake(12, 1)];
[bezierPath addLineToPoint: CGPointMake(2, 10.5)];
[bezierPath addLineToPoint: CGPointMake(12, 20)];
[[UIColor blackColor] setStroke];
bezierPath.lineWidth = 3;
[bezierPath stroke];
UIImage* image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
// should be tint-colored
_image = [image imageWithRenderingMode:UIImageRenderingModeAlwaysTemplate];
}
return _image;
}
-(id)initWithFrame:(CGRect)frame {
self = [super initWithFrame:frame];
if(self) {
self.accessibilityLabel = NSLocalizedString(@"Back", nil);
UIImage* image = [AB_MultiBackButtonView chevronImage];
UIImageView* chevron = [[UIImageView alloc] initWithImage:image];
chevron.contentMode = UIViewContentModeCenter;
[self addSubview:chevron];
self.chevron = chevron;
//UILabel* label = [[UILabel alloc] initWithFrame:self.bounds];
//label.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleRightMargin;
//label.lineBreakMode = NSLineBreakByTruncatingTail;
//[self addSubview: label];
//self.label = label;
}
return self;
}
-(void)layoutSubviews {
CGSize pSize = self.bounds.size;
// image is to the left and vertically centered
CGSize iSize = self.chevron.bounds.size;
self.chevron.frame = CGRectMake(-8, 0.5 * (pSize.height - iSize.height), iSize.width, iSize.height);
// label is left of image and vertically centered
//CGSize lSize = self.label.bounds.size;
//CGFloat x = ceil(5.0 + iSize.width);
//self.label.frame = CGRectMake(x, 0.5 * (pSize.height - lSize.height), pSize.width - x, lSize.height);
}
-(void)setTitle:(NSString*)title {
//self.label.text = title;
//self.label.textColor = self.tintColor;
//[self.label sizeToFit];
[self sizeToFit];
[self setNeedsLayout];
}
-(UINavigationBar*)navigationBar {
UIView* view = self;
while (view != nil) {
if([view isKindOfClass:[UINavigationBar class]]) {
return (UINavigationBar*)view;
}
view = view.superview;
}
return nil;
}
- (UIModalPresentationStyle)adaptivePresentationStyleForPresentationController:(UIPresentationController *)controller {
return UIModalPresentationNone;
}
- (void)popoverPresentationControllerDidDismissPopover:(UIPopoverPresentationController *)popoverPresentationController {
self.tableController = nil;
self.cells = nil;
}
-(void)presentSelection {
NSArray* viewControllers = self.viewController.navigationController.viewControllers;
NSUInteger index = [viewControllers indexOfObject:self.viewController];
if(index == NSNotFound) return;
// make sure we have view controller with hierarchy
if(self.tableController == nil) {
NSMutableArray* cells = [NSMutableArray new];
for(NSInteger k = index; k >= 0; --k) {
UITableViewController* controller = [viewControllers objectAtIndex:k];
UITableViewCell* cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:nil];
cell.textLabel.text = titleForViewController(controller);
cell.imageView.image = imageForController(controller);
[cells addObject:cell];
}
// we add final cell if there is previous info for root controller
UIViewController* root = [viewControllers firstObject];
NSArray* previousInfo = [root previousInfo];
if(previousInfo) {
NSObject* perhapsImage = [previousInfo objectAtIndex:1];
UITableViewCell* cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:nil];
cell.textLabel.text = [previousInfo objectAtIndex:0];
if([perhapsImage isKindOfClass:[UIImage class]]) {
cell.imageView.image = (UIImage*)perhapsImage;
}
[cells addObject:cell];
}
self.cells = cells;
self.tableController = [[UITableViewController alloc] initWithStyle:UITableViewStylePlain];
UITableView* tableView = self.tableController.tableView;
tableView.backgroundColor = BackgroundColor;
tableView.dataSource = self;
tableView.delegate = self;
tableView.alwaysBounceVertical = NO;
[tableView sizeToFit];
CGRect f = tableView.frame;
f.size.width = PopupWidth;
tableView.frame = f;
self.tableController.preferredContentSize = f.size;
self.tableController.modalPresentationStyle = UIModalPresentationPopover;
self.tableController.popoverPresentationController.delegate = self;
self.tableController.popoverPresentationController.sourceView = self.chevron;
self.tableController.popoverPresentationController.sourceRect = self.chevron.bounds;
[self.viewController presentViewController:self.tableController animated:YES completion:nil];
}
}
-(void)removeSelectionAnimated:(BOOL)animated completion:(void (^)(void))block {
[NSObject cancelPreviousPerformRequestsWithTarget:self selector:@selector(presentSelection) object:nil];
if(RotateChevron) {
if(animated) {
[UIView animateWithDuration:0.2 animations:^{
self.chevron.transform = CGAffineTransformIdentity;
}];
} else {
self.chevron.transform = CGAffineTransformIdentity;
}
}
if(self.tableController) {
[self.viewController dismissViewControllerAnimated:animated completion:^{
self.tableController = nil;
self.cells = nil;
if(block) block();
}];
} else {
if(block) block();
}
}
// which cell is below touch, nil if none
-(NSIndexPath*)IndexPathPoint:(CGPoint)pt {
UITableView* tableView = self.tableController.tableView;
CGPoint point = [self convertPoint:pt toView: tableView];
NSIndexPath* indexPath = [tableView indexPathForRowAtPoint: point];
return indexPath;
}
-(void)clearHoverSelection {
if(hoverIndexPath) {
UITableViewCell* cell = [self.tableController.tableView cellForRowAtIndexPath:hoverIndexPath];
[cell setSelected:NO animated:NO];
hoverIndexPath = nil;
}
}
#pragma mark Touch handling
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
UITouch* touch = [touches anyObject];
touchStart = [NSDate timeIntervalSinceReferenceDate];
pointStart = [touch locationInView:self];
significantMovement = NO;
touchStart = [NSDate timeIntervalSinceReferenceDate];
NSTimeInterval delay = 0.3;
// animate chevron to point down
if(RotateChevron) {
[UIView animateWithDuration:delay delay: 0.5 * delay usingSpringWithDamping:0.3 initialSpringVelocity:0
options:0 animations:^{
self.chevron.transform = CGAffineTransformMakeRotation(-M_PI_2);
} completion:nil];
}
[self performSelector:@selector(presentSelection) withObject:nil afterDelay:delay];
}
-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
UITouch* touch = [touches anyObject];
CGPoint point = [touch locationInView:self];
if(!significantMovement) {
CGFloat dx = point.x - pointStart.x, dy = point.y - pointStart.y;
CGFloat sqrdist = dx*dx + dy*dy;
significantMovement = sqrdist >= 50 * 50;
if(significantMovement) {
[self presentSelection];
}
}
// indicate selection when above cell
NSIndexPath* indexPath = [self IndexPathPoint: point];
if(indexPath) {
if([indexPath isEqual: hoverIndexPath]) return;
[self clearHoverSelection];
hoverIndexPath = indexPath;
UITableViewCell* cell = [self.tableController.tableView cellForRowAtIndexPath:indexPath];
[cell setSelected:YES animated:NO];
} else {
[self clearHoverSelection];
}
}
-(void)touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event {
[self removeSelectionAnimated:NO completion:nil];
}
-(void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {
UITouch* touch = [touches anyObject];
CGPoint point = [touch locationInView:self];
NSIndexPath* indexPath = [self IndexPathPoint: point];
if(indexPath) {
[self tableView:self.tableController.tableView didSelectRowAtIndexPath:indexPath];
return;
}
// if we have had much movement but no selection we just dismiss without going back
if(significantMovement) {
[self removeSelectionAnimated: YES completion:nil];
return;
}
// if we touched more than a half second, we assume user wants to use popup
NSTimeInterval secsSinceBegan = [NSDate timeIntervalSinceReferenceDate] - touchStart;
if(secsSinceBegan >= 0.3) return;
// if we end quick touch we do regular back
[self removeSelectionAnimated:YES completion:^{
[self.viewController.navigationController popViewControllerAnimated:YES];
}];
}
#pragma mark UITableViewDataSource
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return self.cells.count;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
return [self.cells objectAtIndex:indexPath.row];
}
#pragma mark UITableViewDelegate
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
[self removeSelectionAnimated:YES completion:^{
NSArray* viewControllers = self.viewController.navigationController.viewControllers;
NSInteger index = [viewControllers indexOfObject:self.viewController];
if(index != NSNotFound) {
index -= indexPath.row;
if(index < viewControllers.count) {
UITableViewController* controller = [viewControllers objectAtIndex:index];
[self.viewController.navigationController popToViewController:controller animated:YES];
} else if(index == -1) {
// this might be the previous Info, which we then act upon
UITableViewController* root = [viewControllers firstObject];
NSArray* previousInfo = [root previousInfo];
void (^action)(void) = [previousInfo objectAtIndex:2];
if(action) {
// we have action and we execute this when done popping
if(self.viewController == root) {
// this is right now when already at correct level
action();
} else {
// we use Core Animation to know when pop animation completes
[CATransaction begin];
[CATransaction setCompletionBlock: action];
[self.viewController.navigationController popToViewController:root animated:YES];
[CATransaction commit];
}
}
}
}
}];
}
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
cell.backgroundColor = BackgroundColor;
}
#pragma mark -
// handle swipe left gesture, which we allow unless popup is shown
- (BOOL)gestureRecognizerShouldBegin:(UIGestureRecognizer *)gestureRecognizer {
return self.tableController == nil;
}
@end
@implementation AB_MultiBackButtonItem
-(AB_MultiBackButtonView*)view {
return (AB_MultiBackButtonView*)self.customView;
}
-(void)refreshTitle {
NSString* title = nil;
NSArray* viewControllers = self.view.viewController.navigationController.viewControllers;
NSUInteger index = [viewControllers indexOfObject:self.view.viewController];
if(index > 0 && index != NSNotFound) {
UIViewController* before = [viewControllers objectAtIndex:index-1];
title = titleForViewController(before);
}
AB_MultiBackButtonView* view = (AB_MultiBackButtonView*)self.customView;
[view setTitle:title];
}
+(AB_MultiBackButtonItem*)backButtonForController:(UIViewController*)controller {
AB_MultiBackButtonView* view = [[AB_MultiBackButtonView alloc] initWithFrame:CGRectMake(0,0, 75, 45)];
AB_MultiBackButtonItem* backButton = [[AB_MultiBackButtonItem alloc] initWithCustomView:view];
backButton.width = view.frame.size.width;
backButton.view.viewController = controller;
view.item = backButton;
[backButton refreshTitle];
return backButton;
}
+(void)useForViewController:(UIViewController*)viewController {
// stop early if we already are configured
if([viewController.navigationItem.leftBarButtonItem isKindOfClass:[AB_MultiBackButtonItem class]]) {
return;
}
// we only set back-button if part of navigation stack and not at the root
NSInteger index = [viewController.navigationController.viewControllers indexOfObject:viewController];
if(index == NSNotFound) return; // this happens if there is nav-controller, but view-controller is not in stack,
// which will perhaps never happen
if(index == 0) return; // this happens both when there is no nav-controller or when at the root
UIBarButtonItem* item = [AB_MultiBackButtonItem backButtonForController: viewController];
__weak AB_MultiBackButtonView* weak_view = (AB_MultiBackButtonView*)item.customView;
viewController.navigationItem.leftBarButtonItem = item;
viewController.navigationController.interactivePopGestureRecognizer.delegate = weak_view;
viewController.navigationController.interactivePopGestureRecognizer.delaysTouchesBegan = NO;
viewController.navigationController.interactivePopGestureRecognizer.cancelsTouchesInView = YES;
}
@end
@implementation UIViewController (AB_MultiBackButtonItem)
static char associationMultiBackButtonImage, associationMultiBackButtonTitle, associationPreviousInfo;
-(void)setMultiBackButtonImage:(UIImage *)multiBackButtonImage {
objc_setAssociatedObject (self, &associationMultiBackButtonImage, multiBackButtonImage, OBJC_ASSOCIATION_RETAIN);
}
-(UIImage*)multiBackButtonImage {
return objc_getAssociatedObject(self, &associationMultiBackButtonImage);
}
-(void)setMultiBackButtonTitle:(NSString *)multiBackButtonTitle {
objc_setAssociatedObject (self, &associationMultiBackButtonTitle, multiBackButtonTitle, OBJC_ASSOCIATION_RETAIN);
}
-(NSString*)multiBackButtonTitle {
return objc_getAssociatedObject(self, &associationMultiBackButtonTitle);
}
-(void)configureMultiBackButton {
[AB_MultiBackButtonItem useForViewController:self];
}
-(NSArray*)previousInfo {
return objc_getAssociatedObject(self, &associationPreviousInfo);
}
-(void)configurePreviousTitle:(NSString*)title image:(UIImage*)image action:(void (^)(void))block {
NSArray* info = nil;
if(title != nil && block != nil) {
info = @[title != nil ? title : nil,
image != nil ? image : [NSNull null],
[block copy]];
}
objc_setAssociatedObject (self, &associationPreviousInfo, info, OBJC_ASSOCIATION_RETAIN);
}
@end