Changelog History
Page 1
-
v3.1.1 Changes
May 08, 2020โ Added ability to listen to index change when the paging finishes
func scrollViewDidEndDecelerating(_ scrollView: UIScrollView) { print(behavior.currentIndex) }
-
v3.1.0 Changes
May 06, 2020- โ Added SPM Support ! ๐
-
v3.0.4 Changes
February 05, 2020- ๐ Fixed issue #55 once and for all ๐ช (Hopefully..)
-
v3.0.3 Changes
December 16, 2019- ๐ Fixed issue #50
- ๐ Fixed an issue when scrolling backwards on the first item or forwards on the last item.
- โ Added some tests around the content length
-
v3.0.2 Changes
December 13, 2019๐ Fixed an issue when scrolling backwards and stopping before pulling finger.
Thanks @miklashevsky for helping me track this thing out!
-
v3.0.1 Changes
December 13, 2019โ Added
scrollToItem
function on the behavior. You can now do something like:behavior.scrollToItem(at: 1, animated: true)
It's recommended to use this function instead of the collection view's scrolling function because we're using a custom collection view layout and the calculation is different
-
v3.0.0 Changes
December 07, 2019๐ New version is here with less bugs! (Hopefully ๐ )
The implementation is now using a custom collection view layout which spaces components based on the collection view's frameThe paging behavior is now in it's separate component so that it would be easier to customize and maintain
๐ The new layout should fix most issues with items clipping but please feel free to raise issues if you're still experiencing them
๐ฑ Thank you for your comments and support everyone! โค๏ธ
-
v2.0.0 Changes
September 05, 2019- โก๏ธ Updated swift to version 5 ๐
-
v1.3.0 Changes
June 05, 2019- โ Added
minimumItemsToScroll
minimumItemsToScroll
is the number of items that the user will scroll when the scroll distance is greater than the threshold. This is quite useful when you have multiple cells showing at once and you need to do a paging behavior.For example, let's say I'm showing 2 items at the same time, but I still want to have some kind of paging behavior by scrolling to another 2 items without the need to scroll 1 item at a time. This can be achieved by setting the number of items to show to 2 and minimum items to scroll to 2
- โ Added
-
v1.2.2 Changes
May 30, 2019- โ Added ability to override
UICollectionViewDelegate
functions
- โ Added ability to override