func savePresentedItemChanges (completionHandler : (Error?) -> Void)
func presentedItemDidMove (to: URL)
func presentedItemDidChange ()
Availability 有効性
Technology
completionHandler
The Block object to call after updating your data structures. Pass nil
to the block’s error
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
をブロックのもつerror
パラメータに渡してください、もしあなたが項目の削除についてうまく準備できたならば。エラーオブジェクトを渡してください、あなたのオブジェクトがそれ自身を適切に準備できなかったならば。
Concurrency Note 並行性注意
You can call this method from synchronous code using a completion handler, as shown on this page, or you can call it as an asynchronous method that has the following declaration: あなたは、このメソッドを同期コードから完了ハンドラを使って呼び出せます、このページで示されるように、またはあなたはそれを以下の宣言を持つ非同期メソッドとして呼び出せます:
For information about concurrency and asynchronous code in Swift, see Calling Objective-C APIs Asynchronously. Swiftにおける並行性と非同期コードについての情報として、Objective-C APIを非同期に呼び出すを見てください。
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. ファイルコーディネータは、あなたのオブジェクトのもつ提供された項目がまさに削除されようとする時に、このメソッドを呼び出します。あなたはこのメソッドを使って、削除のための準備として必要とされるどんなアクションでも実行できます。例えば、書類オブジェクトは概してこのメソッドを使って書類を閉じます。
Important 重要
If you implement this method, you must execute the block in the completion
parameter at the end of your implementation. The system waits for you to execute that block before allowing the other object to delete the file or directory. Therefore, failure to execute the block could stall threads in your application or other processes.
あなたがこのメソッドを実装するならば、あなたはcompletion
パラメータの中のブロックをあなたの実装の終わりで実行する必要があります。システムは、他のオブジェクトにファイルまたはディレクトリを削除させる前に、あなたがそのブロックを実行するのを待ちます。それゆえ、ブロックの実行に失敗することは、あなたのアプリケーションまたは他のプロセスにおけるスレッドを行き詰まらせることが可能です。
func savePresentedItemChanges (completionHandler : (Error?) -> Void)
func presentedItemDidMove (to: URL)
func presentedItemDidChange ()