Scroll UICollectionView to bottom

前端 未结 13 945
梦毁少年i
梦毁少年i 2021-02-02 12:05

I would like to scroll the UICollectionView to the bottom so the last item is in the view. I have tried to use scrollToItemAtIndexPath but it does not seem to be working. I want

13条回答
  •  猫巷女王i
    2021-02-02 12:44

    Swift 4.2

    let lastSection = self.messagesCollectionView.numberOfSections - 1
    let lastRow = self.messagesCollectionView.numberOfItems(inSection: lastSection)
    let indexPath = IndexPath(row: lastRow - 1, section: lastSection)
    self.messagesCollectionView.scrollToItem(at: indexPath, at: UICollectionView.ScrollPosition.top, animated: true)
    

提交回复
热议问题