Just call your TextView and clear the string before you insert your own string.
textView.text.removeAll(keepingCapacity: false)
This line of code will remove the string in the text view. I just used this to clear a textView prior to repopulating with updated data from a databse.