I want to have to occasionally insert text into the UITextView text object. For example, if the user presses the \"New Paragraph\" button I would like to insert a double ne
For Swift 3.0
You can append text by calling method insertText of UITextView Instance.
insertText
UITextView
Example:
textView.insertText("yourText")