Best way to download large files from web to iPhone for writing to disk

前端 未结 2 831
误落风尘
误落风尘 2020-12-18 17:38

In an iPhone app I currently have code for downloading a file from the Web to the iPhone and saving it to disk.

The problem is that if the file is large the

相关标签:
2条回答
  • 2020-12-18 17:43

    You can use NSURLConnection which runs asynchronously and delivers data in manageable chunks.

    0 讨论(0)
  • 2020-12-18 17:44

    As NSURLDownload is not available on the iPhone, you might want to use NSURLConnection and buffer some data in a NSMutableData using connection:didReceiveData: delegate method. This article describes some of this: http://dannyg.com/iapps/Blog/Entries/2009/2/16_The_Joy_in_Discovering_You_Are_an_Idiot.html

    0 讨论(0)
提交回复
热议问题