Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Start UICollectionView at bottom

In iOS 7, given a UICollectionView, how do you start it at the bottom? Think about the iOS Messages app, where when the view becomes visible it always starts at the bottom (most recent message).

like image 301
Nick Stamas Avatar asked Feb 15 '14 16:02

Nick Stamas


1 Answers

This works for me and i think it is a modern way.

override func viewWillAppear(animated: Bool) {
    super.viewWillAppear(animated)
    self.collectionView!.scrollToItemAtIndexPath(indexForTheLast, atScrollPosition: UICollectionViewScrollPosition.Bottom, animated: false)
}
like image 140
duan Avatar answered Sep 20 '22 14:09

duan