Hi Brian, do you know can I add this section of code? just to scroll down to the last comment when the textView is show the keyboard.
UIView.animate(withDuration: 0, delay: 0, usingSpringWithDamping: 0.8, initialSpringVelocity: 0, options: .curveEaseInOut, animations: {
self.view.layoutIfNeeded()
}, completion: { (completed) in
if self.isFirstResponder {
let indexPath = NSIndexPath(item: self.comments.count - 1, section: 0)
self.collectionView.scrollToItem(at: indexPath as IndexPath, at: .bottom, animated: true)
}
})