func downloadDidFinish (NSURLDownload)
Sent when a download object has completed downloading successfully and has written its results to disk.
ダウンロードオブジェクトがダウンロードをうまく完了したそしてそれの結果をディスクに書き込んだ場合に送られます。
Availability 有効性
Technology
optional func download(_ download: NSURLDownload
,
didFailWithError error: Error
)
download
The URL download object sending the message. メッセージを送っているURLダウンロードオブジェクト。
error
The error that caused the failure of the download. ダウンロードの失敗の原因となったエラー。
Any partially downloaded file will be deleted. あらゆる部分的ダウンロードファイルは削除されます。
Once the delegate receives this message, it will receive no further messages for download
.
いったん委任先がこのメッセージを受け取るならば、それはそれ以上はメッセージをdownload
に対して受け取らないでしょう。
func downloadDidFinish (NSURLDownload)