insertText(_:replacementRange:)
Inserts the given string into the receiver, replacing the specified content.
Declaration
func insertText(_ string: Any, replacementRange: NSRange)Parameters
- string:
The text to insert, either an
NSStringorNSAttributedStringinstance. - replacementRange:
The range of content to replace in the receiver’s text storage.
Mentioned in
Discussion
This method is the entry point for inserting text typed by the user and is generally not suitable for other purposes. Programmatic modification of the text is best done by operating on the text storage directly. Because this method pertains to the actions of the user, the text view must be editable for the insertion to work.