I am making a an app that has a UITextView and a button.
When I click the button some text will add in the UITextView.
But when c
Make a range, specifying encoding, to the last character, then scroll to that range Something other than utf8 might be appropriate depending on your content
let range = NSMakeRange(self.OutputTextView.text.lengthOfBytes(using: String.Encoding.utf8), 0);
self.OutputTextView.scrollRangeToVisible(range);