func connectionDidResumeDownloading (NSURLConnection, totalBytesWritten : Int64, expectedTotalBytes : Int64)
func connectionDidFinishDownloading (NSURLConnection, destinationURL : URL)
Availability 有効性
Technology
optional func connection(_ connection: NSURLConnection
,
didWriteData bytesWritten: Int64
,
totalBytesWritten: Int64
,
expectedTotalBytes: Int64
)
connection
The URL connection object downloading the asset. アセットをダウンロードしているURL接続オブジェクト。
bytesWritten
The number of bytes written since the last call of this method. このメソッドの最後の呼び出し以降に書き込まれたバイト数。
totalBytesWritten
The total number of bytes of the downloading asset that have been written to the file. ファイルに書き込まれたダウンロードしているアセットの総バイト数。
expectedTotalBytes
The total number of bytes of the URL asset once it is completely downloaded and written to a file. This parameter can be zero if the total number of bytes is not known. ひとたびそれが完全にダウンロードされてファイルに書き込まれる場合の、URLアセットの総バイト数。このパラメータは、総バイト数が未知ならばゼロでありえます。
This method is invoked repeatedly during the download of a URL asset to the destination file. The delegate typically uses the values of the three “bytes” parameters to update a progress indicator in the application’s user interface. このメソッドは、URLアセットの行き先ファイルへのダウンロードの間に繰り返して発動されます。委任先は、概して3つの “バイト” パラメータを使用して、進捗インジケータをアプリケーションのもつユーザインターフェイスにおいて更新します。
func connectionDidResumeDownloading (NSURLConnection, totalBytesWritten : Int64, expectedTotalBytes : Int64)
func connectionDidFinishDownloading (NSURLConnection, destinationURL : URL)