beginEditing()
Begins the buffering of changes to the string’s characters and attributes.
Declaration
func beginEditing()Discussion
Override this method in a subclass to buffer or optimize a series of changes to the string’s characters or attributes. The string continues to buffer text until you call endEditing(), at which time it consolidates the changes and notifies observers.
You can nest pairs of beginEditing() and endEditing() messages.