You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 26, 2019. It is now read-only.
But, if the last section is pinned to bottom, the collectionview is not able to scroll. If I change frame.origin.y = self.collectionView.contentOffset.y + self.collectionView.frame.size.height - 30;, to frame.origin.y = self.collectionView.contentOffset.y + self.collectionView.frame.size.height + 70;It scrolls little bit downwards until the last section is visible and stops there.
The text was updated successfully, but these errors were encountered:
nipun0505
changed the title
Stick last row to bottom
Stick last section to the bottom
Oct 23, 2017
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
So I used this piece of code, to make the last section stick to the bottom:
But, if the last section is pinned to bottom, the collectionview is not able to scroll. If I change
frame.origin.y = self.collectionView.contentOffset.y + self.collectionView.frame.size.height - 30;
, toframe.origin.y = self.collectionView.contentOffset.y + self.collectionView.frame.size.height + 70;
It scrolls little bit downwards until the last section is visible and stops there.The text was updated successfully, but these errors were encountered: