Slide 72
Slide 72 text
by MessageKit
extension UICollectionView {
public func scrollToBottom(animated: Bool = false) {
let collectionViewContentHeight = collectionViewLayout.collectionViewContentSize.height
performBatchUpdates(nil) { _ in
self.scrollRectToVisible(
CGRect(
x: 0,
y: collectionViewContentHeight - 1,
width: 1,
height: 1
),
animated: animated
)
}
}
}
Scroll to bottom in UICollectionView