What is difference between NSURLSessionDataTask vs NSURLSessionDownloadTask

后端 未结 5 486
执念已碎
执念已碎 2020-12-29 21:03

In latest apple introduce new NSURLSession in replace of NSURLConnection, so in there are different task , so what is the difference between

5条回答
  •  囚心锁ツ
    2020-12-29 21:32

    The docs answer this, but:

    • NSURLSessionDownloadTask downloads files to a disk, and you then save the resulting file somewhere to use later on.
    • NSURLSessionDataTask downloads files in memory, and it is up to you to determine how you want to handle the response.

提交回复
热议问题