Skip to content

Releases: joelekstrom/JEKScrollableSectionCollectionViewLayout

v1.3.0 - Add support for standard flow layout per sections

13 Nov 16:21
c62cedf
Compare
Choose a tag to compare

v1.2.0 - Customize scroll views per section

30 Jan 10:27
6519b40
Compare
Choose a tag to compare

This release exposes more stuff you can do with the internal scroll views that manages per-section scrolling.
Previously, you could only enable and disable scroll indicators, but now all these settings are configurable:

  • bounces
  • alwaysBounceHorizontal
  • showsHorizontalScrollIndicator
  • scrollIndicatorInsets
  • indicatorStyle
  • decelerationRate
  • pagingEnabled
  • scrollEnabled

You can either change it for the whole layout by setting layout.defaultScrollViewConfiguration, or per section by implementing

- (nullable JEKScrollViewConfiguration *)collectionView:(UICollectionView *)collectionView layout:(JEKScrollableSectionCollectionViewLayout *)layout scrollViewConfigurationForSection:(NSUInteger)section;

v1.1.1: Fix headers overlapping in empty sections

24 Dec 22:42
70229e0
Compare
Choose a tag to compare
  • Fixes section headers overlapping in empty sections #7

v1.1.0 - Background views and section scroll observing

29 Oct 19:21
1fa9374
Compare
Choose a tag to compare
  • Adds support for background views per section, via collectionView:viewForSupplementaryElementOfKind:atIndexPath:
  • Adds a new protocol, JEKCollectionViewDelegateScrollableSectionLayout to observe scrolling per section