Scroll UICollectionView to bottom

前端 未结 13 1097
梦毁少年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条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-02-02 12:43

        lstMessages.reloadData()
        let item = self.collectionView(lstMessages, numberOfItemsInSection: 0) - 1
        let lastItemIndex = NSIndexPath(forItem: item, inSection: 0)
        lstMessages.scrollToItemAtIndexPath(lastItemIndex, atScrollPosition: UICollectionViewScrollPosition.Top, animated: false)
    

    Where lstMessages is my collectionView

提交回复
热议问题