FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
AsyncDisplayKit/AsyncDisplayKit/ASTableView.mm at master · SummerXZX/AsyncDisplayKit · GitHub
SummerXZX
/
AsyncDisplayKit
Public
forked from
facebookarchive/AsyncDisplayKit
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
AsyncDisplayKit
/
AsyncDisplayKit
/
ASTableView.mm
Copy path
More file actions
More file actions
Latest commit
History
History
History
1278 lines (1044 loc) · 47 KB
Breadcrumbs
AsyncDisplayKit
/
AsyncDisplayKit
/
ASTableView.mm
Copy path
File metadata and controls
1278 lines (1044 loc) · 47 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
//
//
ASTableView.mm
//
AsyncDisplayKit
//
//
Copyright (c) 2014-present, Facebook, Inc. All rights reserved.
//
This source code is licensed under the BSD-style license found in the
//
LICENSE file in the root directory of this source tree. An additional grant
//
of patent rights can be found in the PATENTS file in the same directory.
//
#
import
"
ASTableViewInternal.h
"
#
import
"
ASAssert.h
"
#
import
"
ASAvailability.h
"
#
import
"
ASBatchFetching.h
"
#
import
"
ASCellNode+Internal.h
"
#
import
"
ASChangeSetDataController.h
"
#
import
"
ASDelegateProxy.h
"
#
import
"
ASDisplayNodeExtras.h
"
#
import
"
ASDisplayNode+Beta.h
"
#
import
"
ASDisplayNode+FrameworkPrivate.h
"
#
import
"
ASInternalHelpers.h
"
#
import
"
ASLayout.h
"
#
import
"
_ASDisplayLayer.h
"
#
import
"
ASTableNode.h
"
#
import
"
ASEqualityHelpers.h
"
static
const
ASSizeRange
kInvalidSizeRange
= {CGSizeZero, CGSizeZero};
static
NSString
*
const
kCellReuseIdentifier
=
@"
_ASTableViewCell
"
;
//
#define LOG(...) NSLog(__VA_ARGS__)
#
define
LOG
(...)
#
pragma mark
-
#
pragma mark
ASCellNode<->UITableViewCell bridging.
@class
_ASTableViewCell;
@protocol
_ASTableViewCellDelegate
<
NSObject
>
- (
void
)
didLayoutSubviewsOfTableViewCell
:
(_ASTableViewCell *)
tableViewCell
;
@end
@interface
_ASTableViewCell
:
UITableViewCell
@property
(
nonatomic
,
weak
)
id
<_ASTableViewCellDelegate> delegate;
@property
(
nonatomic
,
weak
) ASCellNode *node;
@end
@implementation
_ASTableViewCell
//
TODO add assertions to prevent use of view-backed UITableViewCell properties (eg .textLabel)
- (
void
)
layoutSubviews
{
[
super
layoutSubviews
];
[_delegate
didLayoutSubviewsOfTableViewCell:
self
];
}
- (
void
)
didTransitionToState
:
(UITableViewCellStateMask)
state
{
[
self
setNeedsLayout
];
[
self
layoutIfNeeded
];
[
super
didTransitionToState:
state];
}
- (
void
)
setNode
:
(ASCellNode *)
node
{
_node = node;
[node
__setSelectedFromUIKit:
self
.selected];
[node
__setHighlightedFromUIKit:
self
.highlighted];
}
- (
void
)
setSelected
:
(
BOOL
)
selected
animated
:
(
BOOL
)
animated
{
[
super
setSelected:
selected
animated:
animated];
[_node
__setSelectedFromUIKit:
selected];
}
- (
void
)
setHighlighted
:
(
BOOL
)
highlighted
animated
:
(
BOOL
)
animated
{
[
super
setHighlighted:
highlighted
animated:
animated];
[_node
__setHighlightedFromUIKit:
highlighted];
}
- (
void
)
prepareForReuse
{
//
Need to clear node pointer before UIKit calls setSelected:NO / setHighlighted:NO on its cells
self.
node
=
nil
;
[
super
prepareForReuse
];
}
@end
#
pragma mark
-
#
pragma mark
ASTableView
@interface
ASTableNode
()
- (
instancetype
)
_initWithTableView
:
(ASTableView *)
tableView
;
@end
@interface
ASTableView
() <ASRangeControllerDataSource, ASRangeControllerDelegate, ASDataControllerSource, _ASTableViewCellDelegate, ASCellNodeInteractionDelegate, ASDelegateProxyInterceptor, ASBatchFetchingScrollView, ASDataControllerEnvironmentDelegate>
{
ASTableViewProxy *_proxyDataSource;
ASTableViewProxy *_proxyDelegate;
ASFlowLayoutController *_layoutController;
ASRangeController *_rangeController;
ASBatchContext *_batchContext;
NSIndexPath
*_pendingVisibleIndexPath;
NSIndexPath
*_contentOffsetAdjustmentTopVisibleRow;
CGFloat _contentOffsetAdjustment;
CGPoint _deceleratingVelocity;
/*
*
* Our layer, retained. Under iOS < 9, when table views are removed from the hierarchy,
* their layers may be deallocated and become dangling pointers. This puts the table view
* into a very dangerous state where pretty much any call will crash it. So we manually retain our layer.
*
* You should never access this, and it will be nil under iOS >= 9.
*/
CALayer
*_retainedLayer;
CGFloat _nodesConstrainedWidth;
BOOL
_ignoreNodesConstrainedWidthChange;
BOOL
_queuedNodeHeightUpdate;
BOOL
_isDeallocating;
BOOL
_performingBatchUpdates;
NSMutableSet
*_cellsForVisibilityUpdates;
struct
{
unsigned
int
asyncDelegateScrollViewDidScroll:
1
;
unsigned
int
asyncDelegateScrollViewWillBeginDragging:
1
;
unsigned
int
asyncDelegateScrollViewDidEndDragging:
1
;
unsigned
int
asyncDelegateTableViewWillDisplayNodeForRowAtIndexPath:
1
;
unsigned
int
asyncDelegateTableViewDidEndDisplayingNodeForRowAtIndexPath:
1
;
unsigned
int
asyncDelegateTableViewDidEndDisplayingNodeForRowAtIndexPathDeprecated:
1
;
unsigned
int
asyncDelegateScrollViewWillEndDraggingWithVelocityTargetContentOffset:
1
;
unsigned
int
asyncDelegateTableViewWillBeginBatchFetchWithContext:
1
;
unsigned
int
asyncDelegateShouldBatchFetchForTableView:
1
;
unsigned
int
asyncDelegateTableViewConstrainedSizeForRowAtIndexPath:
1
;
} _asyncDelegateFlags;
struct
{
unsigned
int
asyncDataSourceNumberOfSectionsInTableView:
1
;
unsigned
int
asyncDataSourceTableViewNodeBlockForRowAtIndexPath:
1
;
unsigned
int
asyncDataSourceTableViewNodeForRowAtIndexPath:
1
;
} _asyncDataSourceFlags;
}
@property
(
nonatomic
,
strong
,
readwrite
) ASDataController *dataController;
//
Used only when ASTableView is created directly rather than through ASTableNode.
//
We create a node so that logic related to appearance, memory management, etc can be located there
//
for both the node-based and view-based version of the table.
//
This also permits sharing logic with ASCollectionNode, as the superclass is not UIKit-controlled.
@property
(
nonatomic
,
strong
) ASTableNode *strongTableNode;
//
Always set, whether ASCollectionView is created directly or via ASCollectionNode.
@property
(
nonatomic
,
weak
) ASTableNode *tableNode;
@property
(
nonatomic
)
BOOL
test_enableSuperUpdateCallLogging;
@end
@implementation
ASTableView
//
Using _ASDisplayLayer ensures things like -layout are properly forwarded to ASTableNode.
+ (
Class
)
layerClass
{
return
[_ASDisplayLayer
class
];
}
+ (
Class
)
dataControllerClass
{
return
[ASChangeSetDataController
class
];
}
#
pragma mark
-
#
pragma mark
Lifecycle
- (
void
)
configureWithDataControllerClass
:
(
Class
)
dataControllerClass
{
_layoutController = [[ASFlowLayoutController
alloc
]
initWithScrollOption:
ASFlowLayoutDirectionVertical];
_rangeController = [[ASRangeController
alloc
]
init
];
_rangeController.
layoutController
= _layoutController;
_rangeController.
dataSource
= self;
_rangeController.
delegate
= self;
_dataController = [[dataControllerClass
alloc
]
init
];
_dataController.
dataSource
= self;
_dataController.
delegate
= _rangeController;
_dataController.
environmentDelegate
= self;
_layoutController.
dataSource
= _dataController;
_leadingScreensForBatching =
2.0
;
_batchContext = [[ASBatchContext
alloc
]
init
];
_automaticallyAdjustsContentOffset =
NO
;
_nodesConstrainedWidth = self.
bounds
.
size
.
width
;
//
If the initial size is 0, expect a size change very soon which is part of the initial configuration
//
and should not trigger a relayout.
_ignoreNodesConstrainedWidthChange = (_nodesConstrainedWidth ==
0
);
_proxyDelegate = [[ASTableViewProxy
alloc
]
initWithTarget:
nil
interceptor:
self
];
super.
delegate
= (
id
<UITableViewDelegate>)_proxyDelegate;
_proxyDataSource = [[ASTableViewProxy
alloc
]
initWithTarget:
nil
interceptor:
self
];
super.
dataSource
= (
id
<UITableViewDataSource>)_proxyDataSource;
[
self
registerClass:
_ASTableViewCell.
class
forCellReuseIdentifier
:
kCellReuseIdentifier
];
}
- (
instancetype
)
initWithFrame
:
(CGRect)
frame
style
:
(UITableViewStyle)
style
{
return
[
self
_initWithFrame:
frame
style:
style
dataControllerClass:
nil
ownedByNode:
NO
];
}
//
FIXME: This method is deprecated and will probably be removed in or shortly after 2.0.
- (
instancetype
)
initWithFrame
:
(CGRect)
frame
style
:
(UITableViewStyle)
style
asyncDataFetching
:
(
BOOL
)
asyncDataFetchingEnabled
{
return
[
self
_initWithFrame:
frame
style:
style
dataControllerClass:
nil
ownedByNode:
NO
];
}
- (
instancetype
)
_initWithFrame
:
(CGRect)
frame
style
:
(UITableViewStyle)
style
dataControllerClass
:
(
Class
)
dataControllerClass
ownedByNode
:
(
BOOL
)
ownedByNode
{
if
(!(self = [
super
initWithFrame:
frame
style:
style])) {
return
nil
;
}
_cellsForVisibilityUpdates = [
NSMutableSet
set
];
if
(!dataControllerClass) {
dataControllerClass = [[
self
class
]
dataControllerClass
];
}
[
self
configureWithDataControllerClass:
dataControllerClass];
if
(!ownedByNode) {
//
See commentary at the definition of .strongTableNode for why we create an ASTableNode.
//
FIXME: The _view pointer of the node retains us, but the node will die immediately if we don't
//
retain it. At the moment there isn't a great solution to this, so we can't yet move our core
//
logic to ASTableNode (required to have a shared superclass with ASCollection*).
ASTableNode *tableNode =
nil
;
//
[[ASTableNode alloc] _initWithTableView:self];
self.
strongTableNode
= tableNode;
}
if
(!
AS_AT_LEAST_IOS9
) {
_retainedLayer = self.
layer
;
}
return
self;
}
- (
instancetype
)
initWithCoder
:
(
NSCoder
*)
aDecoder
{
NSLog
(
@"
Warning: AsyncDisplayKit is not designed to be used with Interface Builder. Table properties set in IB will be lost.
"
);
return
[
self
initWithFrame:
CGRectZero
style:
UITableViewStylePlain];
}
- (
void
)
dealloc
{
//
Sometimes the UIKit classes can call back to their delegate even during deallocation.
_isDeallocating =
YES
;
[
self
setAsyncDelegate:
nil
];
[
self
setAsyncDataSource:
nil
];
}
#
pragma mark
-
#
pragma mark
Overrides
- (
void
)
setDataSource
:
(
id
<UITableViewDataSource>)
dataSource
{
//
UIKit can internally generate a call to this method upon changing the asyncDataSource; only assert for non-nil.
ASDisplayNodeAssert
(dataSource ==
nil
,
@"
ASTableView uses asyncDataSource, not UITableView's dataSource property.
"
);
}
- (
void
)
setDelegate
:
(
id
<UITableViewDelegate>)
delegate
{
//
Our UIScrollView superclass sets its delegate to nil on dealloc. Only assert if we get a non-nil value here.
ASDisplayNodeAssert
(delegate ==
nil
,
@"
ASTableView uses asyncDelegate, not UITableView's delegate property.
"
);
}
- (
void
)
setAsyncDataSource
:
(
id
<ASTableViewDataSource>)
asyncDataSource
{
//
Note: It's common to check if the value hasn't changed and short-circuit but we aren't doing that here to handle
//
the (common) case of nilling the asyncDataSource in the ViewController's dealloc. In this case our _asyncDataSource
//
will return as nil (ARC magic) even though the _proxyDataSource still exists. It's really important to hold a strong
//
reference to the old dataSource in this case because calls to ASTableViewProxy will start failing and cause crashes.
NS_VALID_UNTIL_END_OF_SCOPE
id
oldDataSource = self.
dataSource
;
if
(asyncDataSource ==
nil
) {
_asyncDataSource =
nil
;
_proxyDataSource = _isDeallocating ?
nil
: [[ASTableViewProxy
alloc
]
initWithTarget:
nil
interceptor:
self
];
memset
(&_asyncDataSourceFlags,
0
,
sizeof
(_asyncDataSourceFlags));
}
else
{
_asyncDataSource = asyncDataSource;
_proxyDataSource = [[ASTableViewProxy
alloc
]
initWithTarget:
_asyncDataSource
interceptor:
self
];
_asyncDataSourceFlags.
asyncDataSourceNumberOfSectionsInTableView
= [_asyncDataSource
respondsToSelector:
@selector
(
numberOfSectionsInTableView:
)];
_asyncDataSourceFlags.
asyncDataSourceTableViewNodeForRowAtIndexPath
= [_asyncDataSource
respondsToSelector:
@selector
(
tableView:nodeForRowAtIndexPath:
)];
_asyncDataSourceFlags.
asyncDataSourceTableViewNodeBlockForRowAtIndexPath
= [_asyncDataSource
respondsToSelector:
@selector
(
tableView:nodeBlockForRowAtIndexPath:
)];
//
Data source must implement tableView:nodeBlockForRowAtIndexPath: or tableView:nodeForRowAtIndexPath:
ASDisplayNodeAssertTrue
(_asyncDataSourceFlags.
asyncDataSourceTableViewNodeBlockForRowAtIndexPath
|| _asyncDataSourceFlags.
asyncDataSourceTableViewNodeForRowAtIndexPath
);
}
super.
dataSource
= (
id
<UITableViewDataSource>)_proxyDataSource;
}
- (
void
)
setAsyncDelegate
:
(
id
<ASTableViewDelegate>)
asyncDelegate
{
//
Note: It's common to check if the value hasn't changed and short-circuit but we aren't doing that here to handle
//
the (common) case of nilling the asyncDelegate in the ViewController's dealloc. In this case our _asyncDelegate
//
will return as nil (ARC magic) even though the _proxyDataSource still exists. It's really important to hold a strong
//
reference to the old delegate in this case because calls to ASTableViewProxy will start failing and cause crashes.
NS_VALID_UNTIL_END_OF_SCOPE
id
oldDelegate = super.
delegate
;
if
(asyncDelegate ==
nil
) {
_asyncDelegate =
nil
;
_proxyDelegate = _isDeallocating ?
nil
: [[ASTableViewProxy
alloc
]
initWithTarget:
nil
interceptor:
self
];
memset
(&_asyncDelegateFlags,
0
,
sizeof
(_asyncDelegateFlags));
}
else
{
_asyncDelegate = asyncDelegate;
_proxyDelegate = [[ASTableViewProxy
alloc
]
initWithTarget:
_asyncDelegate
interceptor:
self
];
_asyncDelegateFlags.
asyncDelegateScrollViewDidScroll
= [_asyncDelegate
respondsToSelector:
@selector
(
scrollViewDidScroll:
)];
_asyncDelegateFlags.
asyncDelegateTableViewWillDisplayNodeForRowAtIndexPath
= [_asyncDelegate
respondsToSelector:
@selector
(
tableView:willDisplayNodeForRowAtIndexPath:
)];
_asyncDelegateFlags.
asyncDelegateTableViewDidEndDisplayingNodeForRowAtIndexPath
= [_asyncDelegate
respondsToSelector:
@selector
(
tableView:didEndDisplayingNode:forRowAtIndexPath:
)];
_asyncDelegateFlags.
asyncDelegateTableViewDidEndDisplayingNodeForRowAtIndexPathDeprecated
= [_asyncDelegate
respondsToSelector:
@selector
(
tableView:didEndDisplayingNodeForRowAtIndexPath:
)];
_asyncDelegateFlags.
asyncDelegateScrollViewWillEndDraggingWithVelocityTargetContentOffset
= [_asyncDelegate
respondsToSelector:
@selector
(
scrollViewWillEndDragging:withVelocity:targetContentOffset:
)];
_asyncDelegateFlags.
asyncDelegateTableViewWillBeginBatchFetchWithContext
= [_asyncDelegate
respondsToSelector:
@selector
(
tableView:willBeginBatchFetchWithContext:
)];
_asyncDelegateFlags.
asyncDelegateShouldBatchFetchForTableView
= [_asyncDelegate
respondsToSelector:
@selector
(
shouldBatchFetchForTableView:
)];
_asyncDelegateFlags.
asyncDelegateScrollViewWillBeginDragging
= [_asyncDelegate
respondsToSelector:
@selector
(
scrollViewWillBeginDragging:
)];
_asyncDelegateFlags.
asyncDelegateScrollViewDidEndDragging
= [_asyncDelegate
respondsToSelector:
@selector
(
scrollViewDidEndDragging:willDecelerate:
)];
_asyncDelegateFlags.
asyncDelegateTableViewConstrainedSizeForRowAtIndexPath
= [_asyncDelegate
respondsToSelector:
@selector
(
tableView:constrainedSizeForRowAtIndexPath:
)];
}
super.
delegate
= (
id
<UITableViewDelegate>)_proxyDelegate;
}
- (
void
)
proxyTargetHasDeallocated
:
(ASDelegateProxy *)
proxy
{
if
(proxy == _proxyDelegate) {
[
self
setAsyncDelegate:
nil
];
}
else
if
(proxy == _proxyDataSource) {
[
self
setAsyncDataSource:
nil
];
}
}
- (
void
)
reloadDataWithCompletion
:
(
void
(^)())
completion
{
ASPerformBlockOnMainThread
(^{
[
super
reloadData
];
});
[_dataController
reloadDataWithAnimationOptions:
UITableViewRowAnimationNone
completion:
completion];
}
- (
void
)
reloadData
{
[
self
reloadDataWithCompletion:
nil
];
}
- (
void
)
reloadDataImmediately
{
ASDisplayNodeAssertMainThread
();
[_dataController
reloadDataImmediatelyWithAnimationOptions:
UITableViewRowAnimationNone];
[
super
reloadData
];
}
- (
void
)
relayoutItems
{
[_dataController
relayoutAllNodes
];
}
- (
void
)
setTuningParameters
:
(ASRangeTuningParameters)
tuningParameters
forRangeType
:
(ASLayoutRangeType)
rangeType
{
[_rangeController
setTuningParameters:
tuningParameters
forRangeMode:
ASLayoutRangeModeFull
rangeType:
rangeType];
}
- (ASRangeTuningParameters)
tuningParametersForRangeType
:
(ASLayoutRangeType)
rangeType
{
return
[_rangeController
tuningParametersForRangeMode:
ASLayoutRangeModeFull
rangeType:
rangeType];
}
- (
void
)
setTuningParameters
:
(ASRangeTuningParameters)
tuningParameters
forRangeMode
:
(ASLayoutRangeMode)
rangeMode
rangeType
:
(ASLayoutRangeType)
rangeType
{
[_rangeController
setTuningParameters:
tuningParameters
forRangeMode:
rangeMode
rangeType:
rangeType];
}
- (ASRangeTuningParameters)
tuningParametersForRangeMode
:
(ASLayoutRangeMode)
rangeMode
rangeType
:
(ASLayoutRangeType)
rangeType
{
return
[_rangeController
tuningParametersForRangeMode:
rangeMode
rangeType:
rangeType];
}
- (
NSArray
<NSArray <ASCellNode *> *> *)
completedNodes
{
return
[_dataController
completedNodes
];
}
- (ASCellNode *)
nodeForRowAtIndexPath
:
(
NSIndexPath
*)
indexPath
{
return
[_dataController
nodeAtIndexPath:
indexPath];
}
- (
NSIndexPath
*)
indexPathForNode
:
(ASCellNode *)
cellNode
{
return
[_dataController
indexPathForNode:
cellNode];
}
- (
NSArray
<ASCellNode *> *)
visibleNodes
{
NSArray
*indexPaths = [
self
visibleNodeIndexPathsForRangeController:
_rangeController];
NSMutableArray
<ASCellNode *> *visibleNodes = [
NSMutableArray
array
];
for
(
NSIndexPath
*indexPath in indexPaths) {
ASCellNode *node = [
self
nodeForRowAtIndexPath:
indexPath];
if
(node) {
//
It is possible for UITableView to return indexPaths before the node is completed.
[visibleNodes
addObject:
node];
}
}
return
visibleNodes;
}
- (
void
)
beginUpdates
{
ASDisplayNodeAssertMainThread
();
[_dataController
beginUpdates
];
}
- (
void
)
endUpdates
{
[
self
endUpdatesAnimated:
YES
completion:
nil
];
}
- (
void
)
endUpdatesAnimated
:
(
BOOL
)
animated
completion
:
(
void
(^)(
BOOL
completed))
completion
;
{
ASDisplayNodeAssertMainThread
();
[_dataController
endUpdatesAnimated:
animated
completion:
completion];
}
- (
void
)
waitUntilAllUpdatesAreCommitted
{
ASDisplayNodeAssertMainThread
();
[_dataController
waitUntilAllUpdatesAreCommitted
];
}
- (
void
)
layoutSubviews
{
if
(_nodesConstrainedWidth != self.
bounds
.
size
.
width
) {
_nodesConstrainedWidth = self.
bounds
.
size
.
width
;
//
First width change occurs during initial configuration. An expensive relayout pass is unnecessary at that time
//
and should be avoided, assuming that the initial data loading automatically runs shortly afterward.
if
(_ignoreNodesConstrainedWidthChange) {
_ignoreNodesConstrainedWidthChange =
NO
;
}
else
{
[
self
beginUpdates
];
[_dataController
relayoutAllNodes
];
[
self
endUpdates
];
}
}
//
To ensure _nodesConstrainedWidth is up-to-date for every usage, this call to super must be done last
[
super
layoutSubviews
];
[_rangeController
updateIfNeeded
];
}
#
pragma mark
-
#
pragma mark
Editing
- (
void
)
insertSections
:
(
NSIndexSet
*)
sections
withRowAnimation
:
(UITableViewRowAnimation)
animation
{
ASDisplayNodeAssertMainThread
();
if
(sections.
count
==
0
) {
return
; }
[_dataController
insertSections:
sections
withAnimationOptions:
animation];
}
- (
void
)
deleteSections
:
(
NSIndexSet
*)
sections
withRowAnimation
:
(UITableViewRowAnimation)
animation
{
ASDisplayNodeAssertMainThread
();
if
(sections.
count
==
0
) {
return
; }
[_dataController
deleteSections:
sections
withAnimationOptions:
animation];
}
- (
void
)
reloadSections
:
(
NSIndexSet
*)
sections
withRowAnimation
:
(UITableViewRowAnimation)
animation
{
ASDisplayNodeAssertMainThread
();
if
(sections.
count
==
0
) {
return
; }
[_dataController
reloadSections:
sections
withAnimationOptions:
animation];
}
- (
void
)
moveSection
:
(
NSInteger
)
section
toSection
:
(
NSInteger
)
newSection
{
ASDisplayNodeAssertMainThread
();
[_dataController
moveSection:
section
toSection:
newSection
withAnimationOptions:
UITableViewRowAnimationNone];
}
- (
void
)
insertRowsAtIndexPaths
:
(
NSArray
*)
indexPaths
withRowAnimation
:
(UITableViewRowAnimation)
animation
{
ASDisplayNodeAssertMainThread
();
if
(indexPaths.
count
==
0
) {
return
; }
[_dataController
insertRowsAtIndexPaths:
indexPaths
withAnimationOptions:
animation];
}
- (
void
)
deleteRowsAtIndexPaths
:
(
NSArray
*)
indexPaths
withRowAnimation
:
(UITableViewRowAnimation)
animation
{
ASDisplayNodeAssertMainThread
();
if
(indexPaths.
count
==
0
) {
return
; }
[_dataController
deleteRowsAtIndexPaths:
indexPaths
withAnimationOptions:
animation];
}
- (
void
)
reloadRowsAtIndexPaths
:
(
NSArray
*)
indexPaths
withRowAnimation
:
(UITableViewRowAnimation)
animation
{
ASDisplayNodeAssertMainThread
();
if
(indexPaths.
count
==
0
) {
return
; }
[_dataController
reloadRowsAtIndexPaths:
indexPaths
withAnimationOptions:
animation];
}
- (
void
)
moveRowAtIndexPath
:
(
NSIndexPath
*)
indexPath
toIndexPath
:
(
NSIndexPath
*)
newIndexPath
{
ASDisplayNodeAssertMainThread
();
[_dataController
moveRowAtIndexPath:
indexPath
toIndexPath:
newIndexPath
withAnimationOptions:
UITableViewRowAnimationNone];
}
#
pragma mark
-
#
pragma mark
adjust content offset
- (
void
)
beginAdjustingContentOffset
{
ASDisplayNodeAssert
(_automaticallyAdjustsContentOffset,
@"
this method should only be called when _automaticallyAdjustsContentOffset == YES
"
);
_contentOffsetAdjustment =
0
;
_contentOffsetAdjustmentTopVisibleRow = self.
indexPathsForVisibleRows
.
firstObject
;
}
- (
void
)
endAdjustingContentOffset
{
ASDisplayNodeAssert
(_automaticallyAdjustsContentOffset,
@"
this method should only be called when _automaticallyAdjustsContentOffset == YES
"
);
if
(_contentOffsetAdjustment !=
0
) {
self.
contentOffset
=
CGPointMake
(
0
, self.
contentOffset
.
y
+_contentOffsetAdjustment);
}
_contentOffsetAdjustment =
0
;
_contentOffsetAdjustmentTopVisibleRow =
nil
;
}
- (
void
)
adjustContentOffsetWithNodes
:
(
NSArray
*)
nodes
atIndexPaths
:
(
NSArray
*)
indexPaths
inserting
:
(
BOOL
)
inserting
{
//
Maintain the users visible window when inserting or deleting cells by adjusting the content offset for nodes
//
before the visible area. If in a begin/end updates block this will update _contentOffsetAdjustment, otherwise it will
//
update self.contentOffset directly.
ASDisplayNodeAssert
(_automaticallyAdjustsContentOffset,
@"
this method should only be called when _automaticallyAdjustsContentOffset == YES
"
);
CGFloat dir = (inserting) ? +
1
: -
1
;
CGFloat adjustment =
0
;
NSIndexPath
*top = _contentOffsetAdjustmentTopVisibleRow ? : self.
indexPathsForVisibleRows
.
firstObject
;
for
(
int
index =
0
; index < indexPaths.
count
; index++) {
NSIndexPath
*indexPath = indexPaths[index];
if
([indexPath
compare:
top] <=
0
) {
//
if this row is before or equal to the topmost visible row, make adjustments...
ASCellNode *cellNode = nodes[index];
adjustment += cellNode.
calculatedSize
.
height
* dir;
if
(indexPath.
section
== top.
section
) {
top = [
NSIndexPath
indexPathForRow:
top.row+dir
inSection:
top.section];
}
}
}
if
(_contentOffsetAdjustmentTopVisibleRow) {
//
true of we are in a begin/end update block (see beginAdjustingContentOffset)
_contentOffsetAdjustmentTopVisibleRow = top;
_contentOffsetAdjustment += adjustment;
}
else
if
(adjustment !=
0
) {
self.
contentOffset
=
CGPointMake
(
0
, self.
contentOffset
.
y
+adjustment);
}
}
#
pragma mark
- Intercepted selectors
- (
void
)
setTableHeaderView
:
(UIView *)
tableHeaderView
{
//
Typically the view will be nil before setting it, but reset state if it is being re-hosted.
[
self
.tableHeaderView.asyncdisplaykit_node
exitHierarchyState:
ASHierarchyStateRangeManaged];
[
super
setTableHeaderView:
tableHeaderView];
[
self
.tableHeaderView.asyncdisplaykit_node
enterHierarchyState:
ASHierarchyStateRangeManaged];
}
- (
void
)
setTableFooterView
:
(UIView *)
tableFooterView
{
//
Typically the view will be nil before setting it, but reset state if it is being re-hosted.
[
self
.tableFooterView.asyncdisplaykit_node
exitHierarchyState:
ASHierarchyStateRangeManaged];
[
super
setTableFooterView:
tableFooterView];
[
self
.tableFooterView.asyncdisplaykit_node
enterHierarchyState:
ASHierarchyStateRangeManaged];
}
- (UITableViewCell *)
tableView
:
(UITableView *)
tableView
cellForRowAtIndexPath
:
(
NSIndexPath
*)
indexPath
{
_ASTableViewCell *cell = [
self
dequeueReusableCellWithIdentifier:
kCellReuseIdentifier
forIndexPath:
indexPath];
cell.
delegate
= self;
ASCellNode *node = [_dataController
nodeAtIndexPath:
indexPath];
[_rangeController
configureContentView:
cell.contentView
forCellNode:
node];
cell.
node
= node;
cell.
backgroundColor
= node.
backgroundColor
;
cell.
selectionStyle
= node.
selectionStyle
;
//
the following ensures that we clip the entire cell to it's bounds if node.clipsToBounds is set (the default)
//
This is actually a workaround for a bug we are seeing in some rare cases (selected background view
//
overlaps other cells if size of ASCellNode has changed.)
cell.
clipsToBounds
= node.
clipsToBounds
;
return
cell;
}
- (CGFloat)
tableView
:
(UITableView *)
tableView
heightForRowAtIndexPath
:
(
NSIndexPath
*)
indexPath
{
ASCellNode *node = [_dataController
nodeAtIndexPath:
indexPath];
return
node.
calculatedSize
.
height
;
}
- (
NSInteger
)
numberOfSectionsInTableView
:
(UITableView *)
tableView
{
return
[_dataController
numberOfSections
];
}
- (
NSInteger
)
tableView
:
(UITableView *)
tableView
numberOfRowsInSection
:
(
NSInteger
)
section
{
return
[_dataController
numberOfRowsInSection:
section];
}
- (
void
)
tableView
:
(UITableView *)
tableView
willDisplayCell
:
(_ASTableViewCell *)
cell
forRowAtIndexPath
:
(
NSIndexPath
*)
indexPath
{
_pendingVisibleIndexPath = indexPath;
ASCellNode *cellNode = [cell
node
];
cellNode.
scrollView
= tableView;
if
(_asyncDelegateFlags.
asyncDelegateTableViewWillDisplayNodeForRowAtIndexPath
) {
[_asyncDelegate
tableView:
self
willDisplayNodeForRowAtIndexPath:
indexPath];
}
[_rangeController
setNeedsUpdate
];
if
(
ASSubclassOverridesSelector
([ASCellNode
class
], [cellNode
class
],
@selector
(
cellNodeVisibilityEvent:inScrollView:withCellFrame:
))) {
[_cellsForVisibilityUpdates
addObject:
cell];
}
}
- (
void
)
tableView
:
(UITableView *)
tableView
didEndDisplayingCell
:
(_ASTableViewCell *)
cell
forRowAtIndexPath
:
(
NSIndexPath
*)
indexPath
{
if
(
ASObjectIsEqual
(_pendingVisibleIndexPath, indexPath)) {
_pendingVisibleIndexPath =
nil
;
}
ASCellNode *cellNode = [cell
node
];
[_rangeController
setNeedsUpdate
];
if
(_asyncDelegateFlags.
asyncDelegateTableViewDidEndDisplayingNodeForRowAtIndexPath
) {
ASDisplayNodeAssertNotNil
(cellNode,
@"
Expected node associated with removed cell not to be nil.
"
);
[_asyncDelegate
tableView:
self
didEndDisplayingNode:
cellNode
forRowAtIndexPath:
indexPath];
}
[_cellsForVisibilityUpdates
removeObject:
cell];
#
pragma
clang diagnostic push
#
pragma
clang diagnostic ignored "-Wdeprecated-declarations"
if
(_asyncDelegateFlags.
asyncDelegateTableViewDidEndDisplayingNodeForRowAtIndexPathDeprecated
) {
[_asyncDelegate
tableView:
self
didEndDisplayingNodeForRowAtIndexPath:
indexPath];
}
#
pragma
clang diagnostic pop
cellNode.
scrollView
=
nil
;
}
- (
void
)
scrollViewDidScroll
:
(UIScrollView *)
scrollView
{
//
If a scroll happenes the current range mode needs to go to full
ASInterfaceState interfaceState = [
self
interfaceStateForRangeController:
_rangeController];
if
(
ASInterfaceStateIncludesVisible
(interfaceState)) {
[_rangeController
updateCurrentRangeWithMode:
ASLayoutRangeModeFull];
}
for
(_ASTableViewCell *tableCell in _cellsForVisibilityUpdates) {
[[tableCell
node
]
cellNodeVisibilityEvent:
ASCellNodeVisibilityEventVisibleRectChanged
inScrollView:
scrollView
withCellFrame:
tableCell.frame];
}
if
(_asyncDelegateFlags.
asyncDelegateScrollViewDidScroll
) {
[_asyncDelegate
scrollViewDidScroll:
scrollView];
}
}
- (
void
)
scrollViewWillEndDragging
:
(UIScrollView *)
scrollView
withVelocity
:
(CGPoint)
velocity
targetContentOffset
:
(
inout
CGPoint *)
targetContentOffset
{
_deceleratingVelocity =
CGPointMake
(
scrollView.
contentOffset
.
x
- ((targetContentOffset !=
NULL
) ? targetContentOffset->
x
:
0
),
scrollView.
contentOffset
.
y
- ((targetContentOffset !=
NULL
) ? targetContentOffset->
y
:
0
)
);
if
(targetContentOffset !=
NULL
) {
ASDisplayNodeAssert
(_batchContext !=
nil
,
@"
Batch context should exist
"
);
[
self
_beginBatchFetchingIfNeededWithScrollView:
self
forScrollDirection:
[
self
scrollDirection
]
contentOffset:
*targetContentOffset];
}
if
(_asyncDelegateFlags.
asyncDelegateScrollViewWillEndDraggingWithVelocityTargetContentOffset
) {
[_asyncDelegate
scrollViewWillEndDragging:
scrollView
withVelocity:
velocity
targetContentOffset:
targetContentOffset];
}
}
- (
void
)
scrollViewWillBeginDragging
:
(UIScrollView *)
scrollView
{
for
(_ASTableViewCell *tableViewCell in _cellsForVisibilityUpdates) {
[[tableViewCell
node
]
cellNodeVisibilityEvent:
ASCellNodeVisibilityEventWillBeginDragging
inScrollView:
scrollView
withCellFrame:
tableViewCell.frame];
}
if
(_asyncDelegateFlags.
asyncDelegateScrollViewWillBeginDragging
) {
[_asyncDelegate
scrollViewWillBeginDragging:
scrollView];
}
}
- (
void
)
scrollViewDidEndDragging
:
(UIScrollView *)
scrollView
willDecelerate
:
(
BOOL
)
decelerate
{
for
(_ASTableViewCell *tableViewCell in _cellsForVisibilityUpdates) {
[[tableViewCell
node
]
cellNodeVisibilityEvent:
ASCellNodeVisibilityEventDidEndDragging
inScrollView:
scrollView
withCellFrame:
tableViewCell.frame];
}
if
(_asyncDelegateFlags.
asyncDelegateScrollViewDidEndDragging
) {
[_asyncDelegate
scrollViewDidEndDragging:
scrollView
willDecelerate:
decelerate];
}
}
#
pragma mark
- Scroll Direction
- (ASScrollDirection)
scrollDirection
{
CGPoint scrollVelocity;
if
(self.
isTracking
) {
scrollVelocity = [
self
.panGestureRecognizer
velocityInView:
self
.superview];
}
else
{
scrollVelocity = _deceleratingVelocity;
}
ASScrollDirection scrollDirection = [
self
_scrollDirectionForVelocity:
scrollVelocity];
return
ASScrollDirectionApplyTransform
(scrollDirection, self.
transform
);
}
- (ASScrollDirection)
_scrollDirectionForVelocity
:
(CGPoint)
scrollVelocity
{
ASScrollDirection direction = ASScrollDirectionNone;
ASScrollDirection scrollableDirections = [
self
scrollableDirections
];
if
(
ASScrollDirectionContainsVerticalDirection
(scrollableDirections)) {
//
Can scroll vertically.
if
(scrollVelocity.
y
<
0.0
) {
direction |= ASScrollDirectionDown;
}
else
if
(scrollVelocity.
y
>
0.0
) {
direction |= ASScrollDirectionUp;
}
}
return
direction;
}
- (ASScrollDirection)
scrollableDirections
{
ASScrollDirection scrollableDirection = ASScrollDirectionNone;
CGFloat totalContentWidth = self.
contentSize
.
width
+ self.
contentInset
.
left
+ self.
contentInset
.
right
;
CGFloat totalContentHeight = self.
contentSize
.
height
+ self.
contentInset
.
top
+ self.
contentInset
.
bottom
;
if
(self.
alwaysBounceHorizontal
|| totalContentWidth > self.
bounds
.
size
.
width
) {
//
Can scroll horizontally.
scrollableDirection |= ASScrollDirectionHorizontalDirections;
}
if
(self.
alwaysBounceVertical
|| totalContentHeight > self.
bounds
.
size
.
height
) {
//
Can scroll vertically.
scrollableDirection |= ASScrollDirectionVerticalDirections;
}
return
scrollableDirection;
}
#
pragma mark
- Batch Fetching
- (ASBatchContext *)
batchContext
{
return
_batchContext;
}
- (
BOOL
)
canBatchFetch
{
//
if the delegate does not respond to this method, there is no point in starting to fetch
BOOL
canFetch = _asyncDelegateFlags.
asyncDelegateTableViewWillBeginBatchFetchWithContext
;
if
(canFetch && _asyncDelegateFlags.
asyncDelegateShouldBatchFetchForTableView
) {
return
[_asyncDelegate
shouldBatchFetchForTableView:
self
];
}
else
{
return
canFetch;
}
}
- (
void
)
_scheduleCheckForBatchFetchingForNumberOfChanges
:
(
NSUInteger
)
changes
{
//
Prevent fetching will continually trigger in a loop after reaching end of content and no new content was provided
if
(changes ==
0
) {
return
;
}
//
Push this to the next runloop to be sure the scroll view has the right content size
dispatch_async
(
dispatch_get_main_queue
(), ^{
[
self
_checkForBatchFetching
];
});
}
- (
void
)
_checkForBatchFetching
{
//
Dragging will be handled in scrollViewWillEndDragging:withVelocity:targetContentOffset:
if
(self.
isDragging
|| self.
isTracking
) {
return
;
}
[
self
_beginBatchFetchingIfNeededWithScrollView:
self
forScrollDirection:
[
self
scrollableDirections
]
contentOffset:
self
.contentOffset];
}
- (
void
)
_beginBatchFetchingIfNeededWithScrollView
:
(UIScrollView<ASBatchFetchingScrollView> *)
scrollView
forScrollDirection
:
(ASScrollDirection)
scrollDirection
contentOffset
:
(CGPoint)
contentOffset
{
if
(
ASDisplayShouldFetchBatchForScrollView
(self, scrollDirection, contentOffset)) {
[
self
_beginBatchFetching
];
}
}
- (
void
)
_beginBatchFetching
{
[_batchContext
beginBatchFetching
];
if
(_asyncDelegateFlags.
asyncDelegateTableViewWillBeginBatchFetchWithContext
) {
dispatch_async
(
dispatch_get_global_queue
(
DISPATCH_QUEUE_PRIORITY_DEFAULT
,
0
), ^{
[_asyncDelegate
tableView:
self
willBeginBatchFetchWithContext:
_batchContext];
});
}
}
#
pragma mark
- ASRangeControllerDataSource
- (ASRangeController *)
rangeController
{
return
_rangeController;
}
- (
NSArray
*)
visibleNodeIndexPathsForRangeController
:
(ASRangeController *)
rangeController
{
ASDisplayNodeAssertMainThread
();
//
Calling indexPathsForVisibleRows will trigger UIKit to call reloadData if it never has, which can result
//
in incorrect layout if performed at zero size. We can use the fact that nothing can be visible at zero size to return fast.
if
(
CGRectEqualToRect
(self.
bounds
, CGRectZero)) {
return
@[];
}
//
NOTE: A prior comment claimed that `indexPathsForVisibleRows` may return extra index paths for grouped-style
//
tables. This is seen as an acceptable issue for the time being.
NSIndexPath
*pendingVisibleIndexPath = _pendingVisibleIndexPath;
if
(pendingVisibleIndexPath ==
nil
) {
return
self.
indexPathsForVisibleRows
;
}
NSMutableArray
*visibleIndexPaths = [
self
.indexPathsForVisibleRows
mutableCopy
];
[visibleIndexPaths
sortUsingSelector:
@selector
(
compare:
)];
BOOL
isPendingIndexPathVisible = (
NSNotFound
!= [visibleIndexPaths
indexOfObject:
pendingVisibleIndexPath
inSortedRange:
NSMakeRange
(
0
, visibleIndexPaths.count)
options:
kNilOptions
usingComparator:
^(
id
_Nonnull obj1,
id
_Nonnull obj2) {
return
[obj1
compare:
obj2];
}]);
if
(isPendingIndexPathVisible) {
_pendingVisibleIndexPath =
nil
;
//
once it has shown up in visibleIndexPaths, we can stop tracking it
}
else
if
([
self
isIndexPath:
visibleIndexPaths.firstObject
immediateSuccessorOfIndexPath:
pendingVisibleIndexPath]) {
[visibleIndexPaths
insertObject:
pendingVisibleIndexPath
atIndex:
0
];
}
else
if
([
self
isIndexPath:
pendingVisibleIndexPath
immediateSuccessorOfIndexPath:
visibleIndexPaths.lastObject]) {
[visibleIndexPaths
addObject:
pendingVisibleIndexPath];
}
else
{
_pendingVisibleIndexPath =
nil
;
//
not contiguous, ignore.
}
return
visibleIndexPaths;
}
- (ASScrollDirection)
scrollDirectionForRangeController
:
(ASRangeController *)
rangeController
{
return
self.
scrollDirection
;
}
- (
NSArray
*)
rangeController
:
(ASRangeController *)
rangeController
nodesAtIndexPaths
:
(
NSArray
*)
indexPaths
{
return
[_dataController
nodesAtIndexPaths:
indexPaths];
}
- (ASDisplayNode *)
rangeController
:
(ASRangeController *)
rangeController
nodeAtIndexPath
:
(
NSIndexPath
*)
indexPath
{
return
[_dataController
nodeAtIndexPath:
indexPath];
}
- (CGSize)
viewportSizeForRangeController
:
(ASRangeController *)
rangeController
{
ASDisplayNodeAssertMainThread
();
return
self.
bounds
.
size
;
}
- (ASInterfaceState)
interfaceStateForRangeController
:
(ASRangeController *)
rangeController
{
return
ASInterfaceStateForDisplayNode
(self.
tableNode
, self.
window
);
}
#
pragma mark
- ASRangeControllerDelegate
- (
void
)
didBeginUpdatesInRangeController
:
(ASRangeController *)
rangeController
{
ASDisplayNodeAssertMainThread
();
LOG
(
@"
--- UITableView beginUpdates
"
);
if
(!self.
asyncDataSource
) {
return
;
//
if the asyncDataSource has become invalid while we are processing, ignore this request to avoid crashes
}
_performingBatchUpdates =
YES
;
[
super
beginUpdates
];
if
(_automaticallyAdjustsContentOffset) {
[
self
beginAdjustingContentOffset
];
}
}
- (
void
)
rangeController
:
(ASRangeController *)
rangeController
didEndUpdatesAnimated
:
(
BOOL
)
animated
completion
:
(
void
(^)(
BOOL
))
completion
{
ASDisplayNodeAssertMainThread
();
LOG
(
@"
--- UITableView endUpdates
"
);
if
(!self.
asyncDataSource
) {
if
(completion) {
completion
(
NO
);
}
return
;
//
if the asyncDataSource has become invalid while we are processing, ignore this request to avoid crashes
}
if
(_automaticallyAdjustsContentOffset) {
[
self
endAdjustingContentOffset
];
}
ASPerformBlockWithoutAnimation
(!animated, ^{
[
super
endUpdates
];
[_rangeController
updateIfNeeded
];
});
_performingBatchUpdates =
NO
;
if
(completion) {
completion
(
YES
);
}
}
- (
void
)
didCompleteUpdatesInRangeController
:
(ASRangeController *)
rangeController
{
[
self
_checkForBatchFetching
];
}
- (
void
)
rangeController
:
(ASRangeController *)
rangeController
didInsertNodes
:
(
NSArray
*)
nodes
atIndexPaths
:
(
NSArray
*)
indexPaths
withAnimationOptions
:
(ASDataControllerAnimationOptions)
animationOptions
{
ASDisplayNodeAssertMainThread
();
LOG
(
@"
UITableView insertRows:
%ld
rows
"
, indexPaths.
count
);
if
(!self.
asyncDataSource
) {
return
;
//
if the asyncDataSource has become invalid while we are processing, ignore this request to avoid crashes
}
BOOL
preventAnimation = animationOptions == UITableViewRowAnimationNone;
ASPerformBlockWithoutAnimation
(preventAnimation, ^{
if
(self.
test_enableSuperUpdateCallLogging
) {
NSLog
(
@"
-[super insertRowsAtIndexPaths]:
%@
"
, indexPaths);
}
[
super
insertRowsAtIndexPaths:
indexPaths
withRowAnimation:
(UITableViewRowAnimation)animationOptions];
if
(!_performingBatchUpdates) {
[_rangeController
updateIfNeeded
];
}
[
self
_scheduleCheckForBatchFetchingForNumberOfChanges:
indexPaths.count];
});
if
(_automaticallyAdjustsContentOffset) {
[
self
adjustContentOffsetWithNodes:
nodes
atIndexPaths:
indexPaths
inserting:
YES
];
}
}
- (
void
)
rangeController
:
(ASRangeController *)
rangeController
didDeleteNodes
:
(
NSArray
*)
nodes
atIndexPaths
:
(
NSArray
*)
indexPaths
withAnimationOptions
:
(ASDataControllerAnimationOptions)
animationOptions
{
ASDisplayNodeAssertMainThread
();
LOG
(
@"
UITableView deleteRows:
%ld
rows
"
, indexPaths.
count
);
View remainder of file in raw view
Back
|
FazBrowse Home
|
New Git URL