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

connectionDidFinishDownloading(_:destinationURL:)

Sent to the delegate when the URL connection has successfully downloaded the URL asset to a destination file. URL接続がURLアセットを行先ファイルにうまくダウンロードした時に委任先に送られます。

Declaration 宣言

func connectionDidFinishDownloading(_ connection: NSURLConnection, 
                     destinationURL: URL)

Parameters パラメータ

connection

The URL connection object that downloaded the asset. アセットをダウンロードしたURL接続オブジェクト。

destinationURL

A file URL specifying a destination in the file system. For iOS applications, this is a location in the application sandbox. ファイルシステムの中のある行先を指定しているファイルURL。iOSアプリケーションに対して、これはアプリケーションサンドボックスの中のある場所です。

Discussion 議論

This method will be called once after a successful download. The file downloaded to destinationURL is guaranteed to exist there only for the duration of this method implementation; the delegate should copy or move the file to a more persistent and appropriate location. このメソッドは、うまくいったダウンロードの後に一度だけ呼び出されるでしょう。destinationURLにダウンロードされたファイルは、このメソッド実装の存続期間に対してのみそこに存在することを保証されます;委任先はより永続的で適切な場所にそのファイルをコピーまたは移動すべきです。

See Also 参照

Managing Downloads of URL Assets URLアセットのダウンロードを管理する