使用此代码滚动到集合视图的底部。然而它只滚动到倒数第二个。
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)
}
任何人都熟悉这样的错误
答案 0 :(得分:0)
您的收藏视图框架位于可见区域下方。您应将其底部设置在可见区域内。