This repository was archived by the owner on Mar 26, 2019. It is now read-only.

Description
So I used this piece of code, to make the last section stick to the bottom:
if (section == [self.collectionView numberOfSections]-1)
{
CGRect frame = attributes.frame;
frame.origin.y = self.collectionView.contentOffset.y + self.collectionView.frame.size.height - 30;
attributes.frame = frame;
}
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.