mirror of
https://github.com/Instagram/IGListKit
synced 2026-05-23 09:18:29 +00:00
Remove intercepted duplicate selector in IGListAdapterProxy. (#1291)
Summary: ## Changes in this pull request ### Checklist Don't need tests. - [x] All tests pass. Demo project builds and runs. - [x] I have reviewed the [contributing guide](https://github.com/Instagram/IGListKit/blob/master/.github/CONTRIBUTING.md) Pull Request resolved: https://github.com/Instagram/IGListKit/pull/1291 Reviewed By: lorixx Differential Revision: D15564138 Pulled By: candance fbshipit-source-id: a0fabbd6a8f8389b09da7cd5484df75d67a709e5
This commit is contained in:
parent
e9be68c9c9
commit
de08713b33
1 changed files with 1 additions and 6 deletions
|
|
@ -35,12 +35,7 @@ static BOOL isInterceptedSelector(SEL sel) {
|
|||
sel == @selector(collectionView:layout:minimumLineSpacingForSectionAtIndex:) ||
|
||||
sel == @selector(collectionView:layout:referenceSizeForFooterInSection:) ||
|
||||
sel == @selector(collectionView:layout:referenceSizeForHeaderInSection:) ||
|
||||
sel == @selector(collectionView:layout:referenceSizeForHeaderInSection:) ||
|
||||
// UIScrollViewDelegate
|
||||
sel == @selector(scrollViewDidScroll:) ||
|
||||
sel == @selector(scrollViewWillBeginDragging:) ||
|
||||
sel == @selector(scrollViewDidEndDragging:willDecelerate:) ||
|
||||
sel == @selector(scrollViewDidEndDecelerating:) ||
|
||||
|
||||
// IGListCollectionViewDelegateLayout
|
||||
sel == @selector(collectionView:layout:customizedInitialLayoutAttributes:atIndexPath:) ||
|
||||
sel == @selector(collectionView:layout:customizedFinalLayoutAttributes:atIndexPath:)
|
||||
|
|
|
|||
Loading…
Reference in a new issue