奇怪的错误,collectionView视图滚动到倒数第二个消息,当尝试滚动到底部时

时间:2016-08-06 01:46:56

标签: ios swift uiscrollview uicollectionview

使用此代码滚动到集合视图的底部。然而它只滚动到倒数第二个。

private func scrollToBottom() {
    let lastSectionIndex = (ChatCollectionView?.numberOfSections())! - 1
    let lastItemIndex = (ChatCollectionView?.numberOfItemsInSection(lastSectionIndex))!-1
    let indexPath = NSIndexPath(forItem: lastItemIndex, inSection: lastSectionIndex)

    ChatCollectionView!.scrollToItemAtIndexPath(indexPath, atScrollPosition: UICollectionViewScrollPosition.Bottom, animated: false)
}

任何人都熟悉这样的错误

1 个答案:

答案 0 :(得分:0)

您的收藏视图框架位于可见区域下方。您应将其底部设置在可见区域内。