Reputation: 2146
What is the best approach to write code for resumable downloads in cocoa? Should I use NSURLConnection, NSURLDownload or is there a better approach? Regards
Upvotes: 0
Views: 104
Reputation: 27620
Have a look at the ASIHTTPRequest library. Unfortunately the developer does not work on this library any more, but I find it still working reliably. There is a lot of nice stuff in this lib and you can make downloads resumable with one line of code.
Upvotes: 1