Scroll to the very bottom of a uicollectionview

Here ya go.

NSInteger section = [self numberOfSectionsInCollectionView:collectionView] - 1;
NSInteger item = [self collectionView:collectionView numberOfItemsInSection:section] - 1;
NSIndexPath *lastIndexPath = [NSIndexPath indexPathForItem:item inSection:section];
[collectionView scrollToItemAtIndexPath:lastIndexPath atScrollPosition:UICollectionViewScrollPositionBottom animated:YES];

Share:
Written: September 19th, 2013
Categories: ios, uicollectionview, collection-view, uikit, uiscrollview

Read more posts …