-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathRKAbstractTableController.m
More file actions
executable file
·1341 lines (1125 loc) · 51.2 KB
/
RKAbstractTableController.m
File metadata and controls
executable file
·1341 lines (1125 loc) · 51.2 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
//
// RKAbstractTableController.m
// RestKit
//
// Created by Jeff Arena on 8/11/11.
// Copyright (c) 2009-2012 RestKit. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
#import "RKAbstractTableController.h"
#import "RKAbstractTableController_Internals.h"
#import "RKMappingOperation.h"
#import "RKLog.h"
#import "RKErrors.h"
#import "UIView+FindFirstResponder.h"
#import "RKRefreshGestureRecognizer.h"
#import "RKTableSection.h"
#import "RKObjectRequestOperation.h"
#import "RKObjectMappingOperationDataSource.h"
#import "RKManagedObjectRequestOperation.h"
#import "RKHTTPUtilities.h"
// Define logging component
#undef RKLogComponent
#define RKLogComponent RKlcl_cRestKitUI
/**
Bounce pixels define how many pixels the cell swipe view is
moved during the bounce animation
*/
#define BOUNCE_PIXELS 5.0
NSString * const RKTableControllerDidStartLoadNotification = @"RKTableControllerDidStartLoadNotification";
NSString * const RKTableControllerDidFinishLoadNotification = @"RKTableControllerDidFinishLoadNotification";
NSString * const RKTableControllerDidLoadObjectsNotification = @"RKTableControllerDidLoadObjectsNotification";
NSString * const RKTableControllerDidLoadEmptyNotification = @"RKTableControllerDidLoadEmptyNotification";
NSString * const RKTableControllerDidLoadErrorNotification = @"RKTableControllerDidLoadErrorNotification";
NSString * const RKTableControllerDidBecomeOnline = @"RKTableControllerDidBecomeOnline";
NSString * const RKTableControllerDidBecomeOffline = @"RKTableControllerDidBecomeOffline";
static NSString *lastUpdatedDateDictionaryKey = @"lastUpdatedDateDictionaryKey";
static inline NSString * RKStringFromBool(BOOL boolValue) { return boolValue ? @"YES" : @"NO"; }
NSString * RKStringFromTableControllerState(RKTableControllerState state)
{
BOOL isLoaded = (state & RKTableControllerStateNotYetLoaded) == 0;
BOOL isEmpty = (state & RKTableControllerStateEmpty);
BOOL isOffline = (state & RKTableControllerStateOffline);
BOOL isLoading = (state & RKTableControllerStateLoading);
BOOL isError = (state & RKTableControllerStateError);
return [NSString stringWithFormat:@"isLoaded=%@, isEmpty=%@, isOffline=%@, isLoading=%@, isError=%@, isNormal=%@",
RKStringFromBool(isLoaded), RKStringFromBool(isEmpty), RKStringFromBool(isOffline),
RKStringFromBool(isLoading), RKStringFromBool(isError), RKStringFromBool(state == RKTableControllerStateNormal)];
}
NSString * RKStringDescribingTransitionFromTableControllerStateToState(RKTableControllerState oldState, RKTableControllerState newState)
{
BOOL loadedChanged = ((oldState ^ newState) & RKTableControllerStateNotYetLoaded);
BOOL emptyChanged = ((oldState ^ newState) & RKTableControllerStateEmpty);
BOOL offlineChanged = ((oldState ^ newState) & RKTableControllerStateOffline);
BOOL loadingChanged = ((oldState ^ newState) & RKTableControllerStateLoading);
BOOL errorChanged = ((oldState ^ newState) & RKTableControllerStateError);
BOOL normalChanged = (oldState == RKTableControllerStateNormal || newState == RKTableControllerStateNormal) && (oldState != newState);
NSMutableArray *changeDescriptions = [NSMutableArray new];
if (loadedChanged) [changeDescriptions addObject:[NSString stringWithFormat:@"isLoaded=%@", RKStringFromBool((newState & RKTableControllerStateNotYetLoaded) == 0)]];
if (emptyChanged) [changeDescriptions addObject:[NSString stringWithFormat:@"isEmpty=%@", RKStringFromBool(newState & RKTableControllerStateEmpty)]];
if (offlineChanged) [changeDescriptions addObject:[NSString stringWithFormat:@"isOffline=%@", RKStringFromBool(newState & RKTableControllerStateOffline)]];
if (loadingChanged) [changeDescriptions addObject:[NSString stringWithFormat:@"isLoading=%@", RKStringFromBool(newState & RKTableControllerStateLoading)]];
if (errorChanged) [changeDescriptions addObject:[NSString stringWithFormat:@"isError=%@", RKStringFromBool(newState & RKTableControllerStateError)]];
if (normalChanged) [changeDescriptions addObject:[NSString stringWithFormat:@"isNormal=%@", RKStringFromBool(newState == RKTableControllerStateNormal)]];
return [changeDescriptions componentsJoinedByString:@", "];
}
@interface RKAbstractTableController ()
@property (nonatomic, strong) RKKeyboardScroller *keyboardScroller;
@property (nonatomic, copy) void (^failureBlock)(NSError *error);
@property (nonatomic, strong) Class HTTPOperationClass;
@end
@implementation RKAbstractTableController
#pragma mark - Instantiation
+ (id)tableControllerWithTableView:(UITableView *)tableView
forViewController:(UIViewController *)viewController
{
return [[self alloc] initWithTableView:tableView viewController:viewController];
}
+ (id)tableControllerForTableViewController:(UITableViewController *)tableViewController
{
return [self tableControllerWithTableView:tableViewController.tableView
forViewController:tableViewController];
}
- (id)initWithTableView:(UITableView *)tableView viewController:(UIViewController *)viewController
{
NSAssert(tableView, @"Cannot initialize a table view model with a nil tableView");
NSAssert(viewController, @"Cannot initialize a table view model with a nil viewController");
self = [self init];
if (self) {
self.tableView = tableView;
_viewController = viewController; // Assign directly to avoid side-effect of overloaded accessor method
self.variableHeightRows = NO;
self.defaultRowAnimation = UITableViewRowAnimationFade;
self.overlayFrame = CGRectZero;
self.showsOverlayImagesModally = YES;
}
return self;
}
- (id)init
{
self = [super init];
if (self) {
if ([self isMemberOfClass:[RKAbstractTableController class]]) {
@throw [NSException exceptionWithName:NSInternalInconsistencyException
reason:[NSString stringWithFormat:@"%@ is abstract. Instantiate one its subclasses instead.",
NSStringFromClass([self class])]
userInfo:nil];
}
self.state = RKTableControllerStateNotYetLoaded;
_cellMappings = [RKTableViewCellMappings new];
_headerItems = [NSMutableArray new];
_footerItems = [NSMutableArray new];
_showsHeaderRowsWhenEmpty = YES;
_showsFooterRowsWhenEmpty = YES;
// Setup key-value observing
[self addObserver:self
forKeyPath:@"state"
options:NSKeyValueObservingOptionNew | NSKeyValueObservingOptionOld
context:nil];
[self addObserver:self
forKeyPath:@"error"
options:NSKeyValueObservingOptionNew | NSKeyValueObservingOptionOld
context:nil];
}
return self;
}
- (void)dealloc
{
// Disconnect from the tableView
if (_tableView.delegate == self) _tableView.delegate = nil;
if (_tableView.dataSource == self) _tableView.dataSource = nil;
// Remove overlay and pull-to-refresh subviews
[_stateOverlayImageView removeFromSuperview];
[_tableOverlayView removeFromSuperview];
// Remove observers
[self removeObserver:self forKeyPath:@"state"];
[self removeObserver:self forKeyPath:@"error"];
[[NSNotificationCenter defaultCenter] removeObserver:self];
[self.objectRequestOperation cancel];
}
- (void)setTableView:(UITableView *)tableView
{
NSAssert(tableView, @"Cannot assign a nil tableView to the model");
_tableView = tableView;
_tableView.delegate = self;
_tableView.dataSource = self;
}
- (void)setViewController:(UIViewController *)viewController
{
if ([viewController isKindOfClass:[UITableViewController class]]) {
self.tableView = [(UITableViewController *)viewController tableView];
}
}
- (void)setAutoResizesForKeyboard:(BOOL)autoResizesForKeyboard
{
if (_autoResizesForKeyboard != autoResizesForKeyboard) {
_autoResizesForKeyboard = autoResizesForKeyboard;
if (_autoResizesForKeyboard) {
self.keyboardScroller = [[RKKeyboardScroller alloc] initWithViewController:self.viewController scrollView:self.tableView];
} else {
self.keyboardScroller = nil;
}
}
}
- (void)setLoading:(BOOL)loading
{
if (loading) {
self.state |= RKTableControllerStateLoading;
} else {
self.state &= ~RKTableControllerStateLoading;
}
}
// NOTE: The loaded flag is handled specially. When loaded becomes NO,
// we clear all other flags. In practice this should not happen outside of init.
- (void)setLoaded:(BOOL)loaded
{
if (loaded) {
self.state &= ~RKTableControllerStateNotYetLoaded;
} else {
self.state = RKTableControllerStateNotYetLoaded;
}
}
- (void)setEmpty:(BOOL)empty
{
if (empty) {
self.state |= RKTableControllerStateEmpty;
} else {
self.state &= ~RKTableControllerStateEmpty;
}
}
- (void)setOffline:(BOOL)offline
{
if (offline) {
self.state |= RKTableControllerStateOffline;
} else {
self.state &= ~RKTableControllerStateOffline;
}
}
- (void)setErrorState:(BOOL)error
{
if (error) {
self.state |= RKTableControllerStateError;
} else {
self.state &= ~RKTableControllerStateError;
}
}
#pragma mark - Abstract Methods
- (BOOL)isConsideredEmpty
{
@throw [NSException exceptionWithName:NSInternalInconsistencyException
reason:[NSString stringWithFormat:@"You must override %@ in a subclass", NSStringFromSelector(_cmd)]
userInfo:nil];
}
- (NSUInteger)sectionCount
{
@throw [NSException exceptionWithName:NSInternalInconsistencyException
reason:[NSString stringWithFormat:@"You must override %@ in a subclass", NSStringFromSelector(_cmd)]
userInfo:nil];
}
- (NSUInteger)rowCount
{
@throw [NSException exceptionWithName:NSInternalInconsistencyException
reason:[NSString stringWithFormat:@"You must override %@ in a subclass", NSStringFromSelector(_cmd)]
userInfo:nil];
}
- (id)objectForRowAtIndexPath:(NSIndexPath *)indexPath
{
@throw [NSException exceptionWithName:NSInternalInconsistencyException
reason:[NSString stringWithFormat:@"You must override %@ in a subclass", NSStringFromSelector(_cmd)]
userInfo:nil];
}
- (NSIndexPath *)indexPathForObject:(id)object
{
@throw [NSException exceptionWithName:NSInternalInconsistencyException
reason:[NSString stringWithFormat:@"You must override %@ in a subclass", NSStringFromSelector(_cmd)]
userInfo:nil];
}
- (NSUInteger)numberOfRowsInSection:(NSUInteger)index
{
@throw [NSException exceptionWithName:NSInternalInconsistencyException
reason:[NSString stringWithFormat:@"You must override %@ in a subclass", NSStringFromSelector(_cmd)]
userInfo:nil];
}
#pragma mark - Cell Mappings
- (void)mapObjectsWithClass:(Class)objectClass toTableCellsWithMapping:(RKTableViewCellMapping *)cellMapping
{
// TODO: Should we raise an exception/throw a warning if you are doing class mapping for a type
// that implements a cellMapping instance method? Maybe a class declaration overrides
[_cellMappings setCellMapping:cellMapping forClass:objectClass];
}
- (void)mapObjectsWithClassName:(NSString *)objectClassName toTableCellsWithMapping:(RKTableViewCellMapping *)cellMapping
{
[self mapObjectsWithClass:NSClassFromString(objectClassName) toTableCellsWithMapping:cellMapping];
}
- (RKTableViewCellMapping *)cellMappingForObjectAtIndexPath:(NSIndexPath *)indexPath
{
NSAssert(indexPath, @"Cannot lookup cell mapping for object with a nil indexPath");
id object = [self objectForRowAtIndexPath:indexPath];
return [self.cellMappings cellMappingForObject:object];
}
- (UITableViewCell *)cellForObject:(id)object
{
NSIndexPath *indexPath = [self indexPathForObject:object];
return indexPath ? [self.tableView cellForRowAtIndexPath:indexPath] : nil;
}
#pragma mark - Header and Footer Rows
- (void)addHeaderRowForItem:(RKTableItem *)tableItem
{
[_headerItems addObject:tableItem];
}
- (void)addFooterRowForItem:(RKTableItem *)tableItem
{
[_footerItems addObject:tableItem];
}
- (void)addHeaderRowWithMapping:(RKTableViewCellMapping *)cellMapping
{
RKTableItem *tableItem = [RKTableItem tableItem];
tableItem.cellMapping = cellMapping;
[self addHeaderRowForItem:tableItem];
}
- (void)addFooterRowWithMapping:(RKTableViewCellMapping *)cellMapping
{
RKTableItem *tableItem = [RKTableItem tableItem];
tableItem.cellMapping = cellMapping;
[self addFooterRowForItem:tableItem];
}
- (void)removeAllHeaderRows
{
[_headerItems removeAllObjects];
}
- (void)removeAllFooterRows
{
[_footerItems removeAllObjects];
}
#pragma mark - UITableViewDataSource methods
- (UITableViewCell *)cellFromCellMapping:(RKTableViewCellMapping *)cellMapping
{
RKLogTrace(@"About to dequeue reusable cell using self.reuseIdentifier=%@", cellMapping.reuseIdentifier);
UITableViewCell *cell = [self.tableView dequeueReusableCellWithIdentifier:cellMapping.reuseIdentifier];
if (cell) {
RKLogTrace(@"Dequeued existing cell object for reuse identifier '%@': %@", cellMapping.reuseIdentifier, cell);
} else {
cell = [[cellMapping.objectClass alloc] initWithStyle:cellMapping.style
reuseIdentifier:cellMapping.reuseIdentifier];
RKLogTrace(@"Failed to dequeue existing cell object for reuse identifier '%@', instantiated new cell: %@", cellMapping.reuseIdentifier, cell);
}
if (cellMapping.managesCellAttributes) {
cell.accessoryType = cellMapping.accessoryType;
cell.selectionStyle = cellMapping.selectionStyle;
}
// Fire the prepare callbacks
for (void (^block)(UITableViewCell *) in cellMapping.prepareCellBlocks) {
block(cell);
}
return cell;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSAssert(tableView == self.tableView, @"tableView:cellForRowAtIndexPath: invoked with inappropriate tableView: %@", tableView);
NSAssert(indexPath, @"Cannot retrieve cell for nil indexPath");
id mappableObject = [self objectForRowAtIndexPath:indexPath];
NSAssert(mappableObject, @"Cannot build a tableView cell without an object");
RKTableViewCellMapping* cellMapping = [self.cellMappings cellMappingForObject:mappableObject];
NSAssert(cellMapping, @"Cannot build a tableView cell for object %@: No cell mapping defined for objects of type '%@'", mappableObject, NSStringFromClass([mappableObject class]));
UITableViewCell *cell = [self cellFromCellMapping:cellMapping];
NSAssert(cell, @"Cell mapping failed to dequeue or allocate a tableViewCell for object: %@", mappableObject);
// Map the object state into the cell
RKObjectMappingOperationDataSource *dataSource = [RKObjectMappingOperationDataSource new];
RKMappingOperation* mappingOperation = [[RKMappingOperation alloc] initWithSourceObject:mappableObject destinationObject:cell mapping:cellMapping];
mappingOperation.dataSource = dataSource;
NSError* error = nil;
BOOL success = [mappingOperation performMapping:&error];
// NOTE: If there is no mapping work performed, but no error is generated then
// we consider the operation a success. It is common for table cells to not contain
// any dynamically mappable content (i.e. header/footer rows, banners, etc.)
if (success == NO && error != nil) {
RKLogError(@"Failed table cell mapping: %@", error);
}
if (self.onPrepareCellForObjectAtIndexPath) {
self.onPrepareCellForObjectAtIndexPath(cell, mappableObject, indexPath);
}
RKLogTrace(@"%@ cellForRowAtIndexPath:%@ = %@", self, indexPath, cell);
return cell;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
[NSException raise:@"Must be implemented in a subclass!" format:@"sectionCount must be implemented with a subclass"];
return 0;
}
#pragma mark - UITableViewDelegate methods
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
NSAssert(tableView == self.tableView, @"tableView:didSelectRowAtIndexPath: invoked with inappropriate tableView: %@", tableView);
RKLogTrace(@"%@: Row at indexPath %@ selected for tableView %@", self, indexPath, tableView);
id object = [self objectForRowAtIndexPath:indexPath];
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
RKTableViewCellMapping *cellMapping = [_cellMappings cellMappingForObject:object];
// NOTE: Handle deselection first as the onSelectCell processing may result in the tableView
// being reloaded and our instances invalidated
if (cellMapping.deselectsRowOnSelection) {
[self.tableView deselectRowAtIndexPath:indexPath animated:YES];
}
if (cellMapping.onSelectCell) {
cellMapping.onSelectCell();
}
if (cellMapping.onSelectCellForObjectAtIndexPath) {
RKLogTrace(@"%@: Invoking onSelectCellForObjectAtIndexPath block with cellMapping %@ for object %@ at indexPath = %@", self, cell, object, indexPath);
cellMapping.onSelectCellForObjectAtIndexPath(cell, object, indexPath);
}
// Table level selection callbacks
if (self.onSelectCellForObjectAtIndexPath) {
self.onSelectCellForObjectAtIndexPath(cell, object, indexPath);
}
if ([self.delegate respondsToSelector:@selector(tableController:didSelectCell:forObject:atIndexPath:)]) {
[self.delegate tableController:self didSelectCell:cell forObject:object atIndexPath:indexPath];
}
}
- (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath
{
NSAssert(tableView == self.tableView, @"tableView:didSelectRowAtIndexPath: invoked with inappropriate tableView: %@", tableView);
RKLogTrace(@"%@: Row at indexPath %@ deselected for tableView %@", self, indexPath, tableView);
id object = [self objectForRowAtIndexPath:indexPath];
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
RKTableViewCellMapping *cellMapping = [_cellMappings cellMappingForObject:object];
if (cellMapping.onDeselectCellForObjectAtIndexPath) {
RKLogTrace(@"%@: Invoking onDeselectCellForObjectAtIndexPath block with cellMapping %@ for object %@ at indexPath = %@", self, cell, object, indexPath);
cellMapping.onDeselectCellForObjectAtIndexPath(cell, object, indexPath);
}
// Table level selection callbacks
if (self.onDeselectCellForObjectAtIndexPath) {
self.onDeselectCellForObjectAtIndexPath(cell, object, indexPath);
}
if ([self.delegate respondsToSelector:@selector(tableController:didDeselectCell:forObject:atIndexPath:)]) {
[self.delegate tableController:self didDeselectCell:cell forObject:object atIndexPath:indexPath];
}
}
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
NSAssert(tableView == self.tableView, @"%@ invoked with inappropriate tableView: %@", NSStringFromSelector(_cmd), tableView);
cell.hidden = NO;
id mappableObject = [self objectForRowAtIndexPath:indexPath];
RKTableViewCellMapping *cellMapping = [self.cellMappings cellMappingForObject:mappableObject];
if (cellMapping.onCellWillAppearForObjectAtIndexPath) {
cellMapping.onCellWillAppearForObjectAtIndexPath(cell, mappableObject, indexPath);
}
if (self.onWillDisplayCellForObjectAtIndexPath) {
self.onWillDisplayCellForObjectAtIndexPath(cell, mappableObject, indexPath);
}
if ([self.delegate respondsToSelector:@selector(tableController:willDisplayCell:forObject:atIndexPath:)]) {
[self.delegate tableController:self willDisplayCell:cell forObject:mappableObject atIndexPath:indexPath];
}
// Handle hiding header/footer rows when empty
if ([self isEmpty]) {
if (! self.showsHeaderRowsWhenEmpty && [_headerItems containsObject:mappableObject]) {
cell.hidden = YES;
}
if (! self.showsFooterRowsWhenEmpty && [_footerItems containsObject:mappableObject]) {
cell.hidden = YES;
}
} else {
if (self.emptyItem && [self.emptyItem isEqual:mappableObject]) {
cell.hidden = YES;
}
}
}
// Variable height support
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
if (self.variableHeightRows) {
RKTableViewCellMapping *cellMapping = [self cellMappingForObjectAtIndexPath:indexPath];
if (cellMapping.heightOfCellForObjectAtIndexPath) {
id object = [self objectForRowAtIndexPath:indexPath];
CGFloat height = cellMapping.heightOfCellForObjectAtIndexPath(object, indexPath);
RKLogTrace(@"Variable row height configured for tableView. Height via block invocation for row at indexPath '%@' = %f", indexPath, cellMapping.rowHeight);
return height;
} else {
RKLogTrace(@"Variable row height configured for tableView. Height for row at indexPath '%@' = %f", indexPath, cellMapping.rowHeight);
return cellMapping.rowHeight;
}
}
RKLogTrace(@"Uniform row height configured for tableView. Table view row height = %f", self.tableView.rowHeight);
return self.tableView.rowHeight;
}
- (void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath
{
RKTableViewCellMapping *cellMapping = [self cellMappingForObjectAtIndexPath:indexPath];
if (cellMapping.onTapAccessoryButtonForObjectAtIndexPath) {
RKLogTrace(@"Found a block for tableView:accessoryButtonTappedForRowWithIndexPath: Executing...");
UITableViewCell *cell = [self tableView:self.tableView cellForRowAtIndexPath:indexPath];
id object = [self objectForRowAtIndexPath:indexPath];
cellMapping.onTapAccessoryButtonForObjectAtIndexPath(cell, object, indexPath);
}
}
- (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath
{
RKTableViewCellMapping *cellMapping = [self cellMappingForObjectAtIndexPath:indexPath];
if (cellMapping.titleForDeleteButtonForObjectAtIndexPath) {
RKLogTrace(@"Found a block for tableView:titleForDeleteConfirmationButtonForRowAtIndexPath: Executing...");
UITableViewCell *cell = [self tableView:self.tableView cellForRowAtIndexPath:indexPath];
id object = [self objectForRowAtIndexPath:indexPath];
return cellMapping.titleForDeleteButtonForObjectAtIndexPath(cell, object, indexPath);
}
return NSLocalizedString(@"Delete", nil);
}
- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath
{
if (_canEditRows) {
RKTableViewCellMapping *cellMapping = [self cellMappingForObjectAtIndexPath:indexPath];
UITableViewCell *cell = [self tableView:self.tableView cellForRowAtIndexPath:indexPath];
if (cellMapping.editingStyleForObjectAtIndexPath) {
RKLogTrace(@"Found a block for tableView:editingStyleForRowAtIndexPath: Executing...");
id object = [self objectForRowAtIndexPath:indexPath];
return cellMapping.editingStyleForObjectAtIndexPath(cell, object, indexPath);
}
return UITableViewCellEditingStyleDelete;
}
return UITableViewCellEditingStyleNone;
}
- (void)tableView:(UITableView *)tableView didEndEditingRowAtIndexPath:(NSIndexPath *)indexPath
{
if ([self.delegate respondsToSelector:@selector(tableController:didEndEditing:atIndexPath:)]) {
id object = [self objectForRowAtIndexPath:indexPath];
[self.delegate tableController:self didEndEditing:object atIndexPath:indexPath];
}
}
- (void)tableView:(UITableView *)tableView willBeginEditingRowAtIndexPath:(NSIndexPath *)indexPath
{
if ([self.delegate respondsToSelector:@selector(tableController:willBeginEditing:atIndexPath:)]) {
id object = [self objectForRowAtIndexPath:indexPath];
[self.delegate tableController:self willBeginEditing:object atIndexPath:indexPath];
}
}
- (NSIndexPath *)tableView:(UITableView *)tableView targetIndexPathForMoveFromRowAtIndexPath:(NSIndexPath *)sourceIndexPath toProposedIndexPath:(NSIndexPath *)proposedDestinationIndexPath
{
if (_canMoveRows) {
RKTableViewCellMapping *cellMapping = [self cellMappingForObjectAtIndexPath:sourceIndexPath];
if (cellMapping.targetIndexPathForMove) {
RKLogTrace(@"Found a block for tableView:targetIndexPathForMoveFromRowAtIndexPath:toProposedIndexPath: Executing...");
UITableViewCell *cell = [self tableView:self.tableView cellForRowAtIndexPath:sourceIndexPath];
id object = [self objectForRowAtIndexPath:sourceIndexPath];
return cellMapping.targetIndexPathForMove(cell, object, sourceIndexPath, proposedDestinationIndexPath);
}
}
return proposedDestinationIndexPath;
}
- (NSIndexPath *)tableView:(UITableView *)tableView willSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
[self removeSwipeView:YES];
return indexPath;
}
#pragma mark - Network Table Loading
- (Class)HTTPOperationClass
{
return _HTTPOperationClass ?: [RKHTTPRequestOperation class];
}
- (id)objectRequestOperationWithRequest:(NSURLRequest *)request
{
RKHTTPRequestOperation *requestOperation = [[[self HTTPOperationClass] alloc] initWithRequest:request];
return [[RKObjectRequestOperation alloc] initWithHTTPRequestOperation:requestOperation responseDescriptors:self.responseDescriptors];
}
- (void)loadTableWithRequest:(NSURLRequest *)request
{
// Cancel any existing load
if (self.objectRequestOperation) {
[self.objectRequestOperation cancel];
[self.objectRequestOperation removeObserver:self forKeyPath:@"isExecuting"];
[self.objectRequestOperation removeObserver:self forKeyPath:@"isCancelled"];
[self.objectRequestOperation removeObserver:self forKeyPath:@"isFinished"];
}
// No valid cached response available, let's go to the network
RKObjectRequestOperation *objectRequestOperation = [self objectRequestOperationWithRequest:request];
[objectRequestOperation addObserver:self forKeyPath:@"isExecuting" options:0 context:0];
[objectRequestOperation addObserver:self forKeyPath:@"isCancelled" options:0 context:0];
[objectRequestOperation addObserver:self forKeyPath:@"isFinished" options:0 context:0];
if ([self.delegate respondsToSelector:@selector(tableController:willLoadTableWithObjectRequestOperation:)]) {
[self.delegate tableController:self willLoadTableWithObjectRequestOperation:objectRequestOperation];
}
if (self.operationQueue) {
[self.operationQueue addOperation:objectRequestOperation];
} else {
RKLogWarning(@"No operation queue configured: starting operation unqueued");
[objectRequestOperation start];
}
self.request = request;
self.objectRequestOperation = objectRequestOperation;
}
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context
{
if ([keyPath isEqualToString:@"state"]) {
// State changes trigger UI updates
dispatch_async(dispatch_get_main_queue(), ^{
[self updateTableViewForStateChange:change];
});
} else if ([keyPath isEqualToString:@"error"]) {
[self setErrorState:(self.error != nil)];
}
// KVO on the request operation
if (object == self.objectRequestOperation) {
if ([keyPath isEqualToString:@"isExecuting"]) {
if ([self.objectRequestOperation isExecuting]) {
RKLogTrace(@"tableController %@ started loading.", self);
[self didStartLoad];
}
} else if ([keyPath isEqualToString:@"isFinished"]) {
if ([self.objectRequestOperation isFinished]) {
if (self.objectRequestOperation.error) {
RKLogError(@"tableController %@ failed network load with error: %@", self, self.objectRequestOperation.error);
[self didFailLoadWithError:self.objectRequestOperation.error];
} else {
if ([self.delegate respondsToSelector:@selector(tableController:didLoadTableWithObjectRequestOperation:)]) {
dispatch_async(dispatch_get_main_queue(), ^{
[self.delegate tableController:self didLoadTableWithObjectRequestOperation:self.objectRequestOperation];
});
}
[self didFinishLoad];
}
self.objectRequestOperation = nil;
}
} else if ([keyPath isEqualToString:@"isCancelled"]) {
RKLogTrace(@"tableController %@ cancelled loading.", self);
self.loading = NO;
self.objectRequestOperation = nil;
if ([self.delegate respondsToSelector:@selector(tableControllerDidCancelLoad:)]) {
dispatch_async(dispatch_get_main_queue(), ^{
[self.delegate tableControllerDidCancelLoad:self];
});
}
}
}
}
- (void)cancelLoad
{
[self.objectRequestOperation cancel];
}
- (void)didStartLoad
{
self.loading = YES;
}
- (void)didFailLoadWithError:(NSError *)error
{
self.error = error;
[self didFinishLoad];
}
- (void)didFinishLoad
{
self.empty = [self isConsideredEmpty];
self.loading = [self.objectRequestOperation isExecuting]; // Mutate loading state after we have adjusted empty
self.loaded = YES;
if (![self isEmpty] && ![self isLoading]) {
[[NSNotificationCenter defaultCenter] postNotificationName:RKTableControllerDidLoadObjectsNotification object:self];
}
if (self.delegate && [_delegate respondsToSelector:@selector(tableControllerDidFinalizeLoad:)]) {
[self.delegate performSelector:@selector(tableControllerDidFinalizeLoad:) withObject:self];
}
}
#pragma mark - Table Overlay Views
- (UIImage *)imageForState:(RKTableControllerState)state
{
switch (state) {
case RKTableControllerStateNormal:
case RKTableControllerStateLoading:
case RKTableControllerStateNotYetLoaded:
return nil;
break;
case RKTableControllerStateEmpty:
return self.imageForEmpty;
break;
case RKTableControllerStateError:
return self.imageForError;
break;
case RKTableControllerStateOffline:
return self.imageForOffline;
break;
default:
break;
}
return nil;
}
- (UIImage *)overlayImage
{
return _stateOverlayImageView.image;
}
// Adds an overlay view above the table
- (void)addToOverlayView:(UIView *)view modally:(BOOL)modally
{
if (! _tableOverlayView) {
CGRect overlayFrame = CGRectIsEmpty(self.overlayFrame) ? self.tableView.frame : self.overlayFrame;
_tableOverlayView = [[UIView alloc] initWithFrame:overlayFrame];
_tableOverlayView.autoresizesSubviews = YES;
_tableOverlayView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleBottomMargin;
NSInteger tableIndex = [_tableView.superview.subviews indexOfObject:_tableView];
if (tableIndex != NSNotFound) {
[_tableView.superview addSubview:_tableOverlayView];
}
}
// When modal, we enable user interaction to catch & discard events on the overlay and its subviews
_tableOverlayView.userInteractionEnabled = modally;
view.userInteractionEnabled = modally;
if (CGRectIsEmpty(view.frame)) {
view.frame = _tableOverlayView.bounds;
// Center it in the overlay
view.center = _tableOverlayView.center;
}
[_tableOverlayView addSubview:view];
}
- (void)resetOverlayView
{
if (_stateOverlayImageView && _stateOverlayImageView.image == nil) {
[_stateOverlayImageView removeFromSuperview];
}
if (_tableOverlayView && _tableOverlayView.subviews.count == 0) {
[_tableOverlayView removeFromSuperview];
_tableOverlayView = nil;
}
}
- (void)addSubviewOverTableView:(UIView *)view
{
NSInteger tableIndex = [_tableView.superview.subviews
indexOfObject:_tableView];
if (NSNotFound != tableIndex) {
[_tableView.superview addSubview:view];
}
}
- (BOOL)removeImageFromOverlay:(UIImage *)image
{
if (image && _stateOverlayImageView.image == image) {
_stateOverlayImageView.image = nil;
return YES;
}
return NO;
}
- (void)showImageInOverlay:(UIImage *)image
{
NSAssert(self.tableView, @"Cannot add an overlay image to a nil tableView");
if (! _stateOverlayImageView) {
_stateOverlayImageView = [[UIImageView alloc] initWithFrame:CGRectZero];
_stateOverlayImageView.opaque = YES;
_stateOverlayImageView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleBottomMargin;
_stateOverlayImageView.contentMode = UIViewContentModeCenter;
}
_stateOverlayImageView.image = image;
[self addToOverlayView:_stateOverlayImageView modally:self.showsOverlayImagesModally];
}
- (void)removeImageOverlay
{
_stateOverlayImageView.image = nil;
[_stateOverlayImageView removeFromSuperview];
[self resetOverlayView];
}
- (void)setImageForEmpty:(UIImage *)imageForEmpty
{
BOOL imageRemoved = [self removeImageFromOverlay:_imageForEmpty];
_imageForEmpty = imageForEmpty;
if (imageRemoved) [self showImageInOverlay:_imageForEmpty];
}
- (void)setImageForError:(UIImage *)imageForError
{
BOOL imageRemoved = [self removeImageFromOverlay:_imageForError];
_imageForError = imageForError;
if (imageRemoved) [self showImageInOverlay:_imageForError];
}
- (void)setImageForOffline:(UIImage *)imageForOffline
{
BOOL imageRemoved = [self removeImageFromOverlay:_imageForOffline];
_imageForOffline = imageForOffline;
if (imageRemoved) [self showImageInOverlay:_imageForOffline];
}
- (void)setLoadingView:(UIView *)loadingView
{
BOOL viewRemoved = (_loadingView.superview != nil);
[_loadingView removeFromSuperview];
[self resetOverlayView];
_loadingView = loadingView;
if (viewRemoved) [self addToOverlayView:_loadingView modally:NO];
}
#pragma mark - KVO & Table States
- (BOOL)isLoading
{
return (self.state & RKTableControllerStateLoading) != 0;
}
- (BOOL)isLoaded
{
return (self.state & RKTableControllerStateNotYetLoaded) == 0;
}
- (BOOL)isOffline
{
return (self.state & RKTableControllerStateOffline) != 0;
}
- (BOOL)isOnline
{
return ![self isOffline];
}
- (BOOL)isError
{
return (self.state & RKTableControllerStateError) != 0;
}
- (BOOL)isEmpty
{
return (self.state & RKTableControllerStateEmpty) != 0;
}
- (void)isLoadingDidChange
{
if ([self isLoading]) {
if ([self.delegate respondsToSelector:@selector(tableControllerDidStartLoad:)]) {
[self.delegate tableControllerDidStartLoad:self];
}
[[NSNotificationCenter defaultCenter] postNotificationName:RKTableControllerDidStartLoadNotification object:self];
// Remove the image overlay while we are loading
[self removeImageOverlay];
if (self.loadingView) {
[self addToOverlayView:self.loadingView modally:NO];
}
} else {
if ([self.delegate respondsToSelector:@selector(tableControllerDidFinishLoad:)]) {
[self.delegate tableControllerDidFinishLoad:self];
}
[[NSNotificationCenter defaultCenter] postNotificationName:RKTableControllerDidFinishLoadNotification object:self];
if (self.loadingView) {
[self.loadingView removeFromSuperview];
[self resetOverlayView];
}
[self resetPullToRefreshRecognizer];
}
// We don't want any image overlays applied until loading is finished
_stateOverlayImageView.hidden = [self isLoading];
}
- (void)isLoadedDidChange
{
if ([self isLoaded]) {
RKLogDebug(@"%@: is now loaded.", self);
} else {
RKLogDebug(@"%@: is NOT loaded.", self);
}
}
- (void)isErrorDidChange
{
if ([self isError]) {
if ([self.delegate respondsToSelector:@selector(tableController:didFailLoadWithError:)]) {
dispatch_async(dispatch_get_main_queue(), ^{
[self.delegate tableController:self didFailLoadWithError:self.error];
});
}
dispatch_async(dispatch_get_main_queue(), ^{
if (self.failureBlock) self.failureBlock(self.error);
});
NSDictionary *userInfo = [NSDictionary dictionaryWithObject:self.error forKey:RKErrorNotificationErrorKey];
[[NSNotificationCenter defaultCenter] postNotificationName:RKTableControllerDidLoadErrorNotification object:self userInfo:userInfo];
}
}
- (void)isEmptyDidChange
{
if ([self isEmpty]) {
if ([self.delegate respondsToSelector:@selector(tableControllerDidBecomeEmpty:)]) {
[self.delegate tableControllerDidBecomeEmpty:self];
}
[[NSNotificationCenter defaultCenter] postNotificationName:RKTableControllerDidLoadEmptyNotification object:self];
}
}
- (void)isOnlineDidChange
{
if ([self isOnline]) {
// We just transitioned to online
if ([self.delegate respondsToSelector:@selector(tableControllerDidBecomeOnline:)]) {
[self.delegate tableControllerDidBecomeOnline:self];
}