iOS - Swift - UITextView scroll to bottom extension
import UIKit extension UITextView { func scrollToBotom() { let range = NSMakeRange(text.characters.count - 1, 1); scrollRangeToVisible(range); } }