Type Property 型プロパティ

PDFDocumentDidEndFind

A notification that the beginFindString(_:withOptions:) or findString(_:withOptions:) method returns. beginFindString(_:withOptions:)またはfindString(_:withOptions:)メソッドが返ることの通知。

Declaration 宣言

static let PDFDocumentDidEndFind: NSNotification.Name

Discussion 議論

The beginFindString(_:withOptions:) method returns immediately, so this notification is posted when the “find” operation is finished. beginFindString(_:withOptions:)メソッドは直ぐに返ります、それでこの通知は “find” 演算が完了する時に投函されます。

You can use this notification to know when to close or hide a progress bar. あなたは、この通知を使ってプログレスバーが閉じるまたは隠れる時を知ることができます。

The notification object is the PDFDocument object itself. 通知オブジェクトは、PDFDocumentオブジェクト自身です。

See Also 参照

PDFKit