Contents

insertText:

Inserts the given string into the receiver’s text storage.

Declaration

- (void) insertText:(id) string;

Parameters

  • string:

    Either an NSString or an NSAttributedString object.

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.

See Also

Text storage