processEditing(for:edited:range:changeInLength:invalidatedRange:)
Notifies the layout manager when an edit action changes the contents of its text storage object.
Declaration
func processEditing(for textStorage: NSTextStorage, edited editMask: NSTextStorageEditActions, range newCharRange: NSRange, changeInLength delta: Int, invalidatedRange invalidatedCharRange: NSRange)Parameters
- textStorage:
The text storage object processing edits.
- editMask:
The types of edits done:
NSTextStorageEditedAttributes,NSTextStorageEditedCharacters, or both. - newCharRange:
The range in the final string that was explicitly edited.
- delta:
The length delta for the editing changes.
- invalidatedCharRange:
The range of characters that changed as a result of attribute fixing. This invalidated range is either equal to
newCharRangeor larger.
Discussion
The processEditing() method of NSTextStorage calls this method to notify the layout manager of an edit action. Layout managers must not change the contents of the text storage during the execution of this message.