I need to cache data that I receive from an remote url to a local URL. I am able to do this successfully with:
let dataToCache = try Data(contentsOf: url)
try
Don't use Data(contentsOf: url)
to make synchronous request for urls that are not local resources. You should use URLSession
.To observe the progress you need to set urlsessiondownloaddelegate https://developer.apple.com/documentation/foundation/urlsessiondownloaddelegate and to monitor the progress, use the method
func urlSession(_ session: URLSession, downloadTask: URLSessionDownloadTask, didWriteData bytesWritten: Int64, totalBytesWritten: Int64, totalBytesExpectedToWrite: Int64)
https://developer.apple.com/documentation/foundation/urlsessiondownloaddelegate/1409408-urlsession