[IGListKit] Adds missing UIScrollViewDelegate method to DataSource proxy (#1015)

* Adds missing UIScrollViewDelegate method to IGListKit proxy implementation

* Updates CHANGELOG
This commit is contained in:
Sergey Pronin 2018-07-10 21:16:13 +03:00 committed by Adlai Holler
parent 55abeed743
commit a08d2210cf
2 changed files with 6 additions and 0 deletions

View File

@ -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)

View File

@ -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];