diff --git a/CHANGELOG.md b/CHANGELOG.md index 608e20e81b..53b52df65d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ - Create a method to transfer strong C-arrays into immutable NSArrays, reducing retain/release traffic. [Adlai Holler](https://github.com/Adlai-Holler) - Remove yoga layout spec, which has been superseded by tighter Yoga integration (`ASDisplayNode+Yoga.h`) - Properly consider node for responder methods [Michael Schneider](https://github.com/maicki) +- [IGListKit] Adds missing UIScrollViewDelegate method to DataSource proxy [Sergey Pronin](https://github.com/wannabehero) ## 2.7 - Fix pager node for interface coalescing. [Max Wang](https://github.com/wsdwsd0829) [#877](https://github.com/TextureGroup/Texture/pull/877) diff --git a/Source/Private/ASIGListAdapterBasedDataSource.m b/Source/Private/ASIGListAdapterBasedDataSource.m index ab18636228..dc63e53b78 100644 --- a/Source/Private/ASIGListAdapterBasedDataSource.m +++ b/Source/Private/ASIGListAdapterBasedDataSource.m @@ -115,6 +115,11 @@ typedef struct { [self.delegate scrollViewDidEndDragging:scrollView willDecelerate:decelerate]; } +- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView +{ + [self.delegate scrollViewDidEndDecelerating:scrollView]; +} + - (BOOL)shouldBatchFetchForCollectionNode:(ASCollectionNode *)collectionNode { NSInteger sectionCount = [self numberOfSectionsInCollectionNode:collectionNode];