Contents

PDFDocumentDidEndFind

A notification that the document finished a find operation.

Declaration

static let PDFDocumentDidEndFind: NSNotification.Name

Discussion

The document posts this notification when findString(_:withOptions:) returns.

The beginFindString(_:withOptions:) method returns immediately, so this notification is posted when the “find” operation is finished.

You can use this notification to know when to close or hide a progress bar.

The notification object is the PDFDocument object itself.

See Also

PDFKit