Instance Method インスタンスメソッド

accommodatePresentedItemDeletion(completionHandler:)

Tells your object that its presented item is about to be deleted. それの提示された項目が消去されようとしていることを、あなたのオブジェクトに伝えます。

Declaration 宣言

optional func accommodatePresentedItemDeletion(completionHandler: @escaping (Error?) -> Void)

Parameters パラメータ

completionHandler

The Block object to call after updating your data structures. Pass nil to the block’s errorOrNil parameter if you were able to successfully prepare for the deletion of the item. Pass an error object if your object could not prepare itself properly. あなたのデータ構造体を更新した後に呼び出すBlockオブジェクトnilをブロックのもつerrorOrNilパラメータに渡してください、もしあなたが項目の削除についてうまく準備できたならば。エラーオブジェクトを渡してください、あなたのオブジェクトがそれ自身を適切に準備できなかったならば。

Discussion 議論

A file coordinator calls this method when your object’s presented item is about to be deleted. You can use this method to perform any actions that are needed to prepare for the deletion. For example, document objects typically use this method to close the document. ファイルコーディネータは、あなたのオブジェクトのもつ提供された項目がまさに削除されようとする時に、このメソッドを呼び出します。あなたはこのメソッドを使って、削除のための準備として必要とされるどんなアクションでも実行できます。例えば、書類オブジェクトは概してこのメソッドを使って書類を閉じます。

See Also 参照

Handling Changes to Files ファイルへの変更を取り扱う