- URLSession:downloadTask:didFinishDownloadingToURL:
告诉代理,该下载任务已完成。
- URLSession:downloadTask:didWriteData:totalBytesWritten:totalBytesExpectedToWrite:
周期性地通知下载进度。
// bytesWritten 表示自上次调用该方法后,接收到的数据字节数
// totalBytesWritten 表示目前已经接收到的数据字节数
// totalBytesExpectedToWrite 表示期望收到的文件总字节数,是由Content-Length header提供。如果没有提供,默认是NSURLSessionTransferSizeUnknown
- URLSession:downloadTask:didResumeAtOffset:expectedTotalBytes:
告诉代理,下载任务重新开始下载了。