Contents

decorateFoundTextRange:inDocument:usingStyle:

Applies the style to a specific text range to indicate found and highlighted results.

Declaration

- (void) decorateFoundTextRange:(UITextRange *) range inDocument:(UITextSearchDocumentIdentifier) document usingStyle:(UITextSearchFoundTextStyle) style;

Parameters

  • range:

    The text range to decorate.

  • document:

    A string that uniquely identifies the document containing the text range. Nil when searching a single document.

  • style:

    The style to decorate the text: highlighted, found, or normal.

Discussion

The system calls this method during a find session to display the results of a search in your custom view. Your implenentation should decorate matching text ranges for the given style to indicate the found and highlighted result.

See Also

Displaying results