I'm making an app and sometimes i will require to download zip files of more than 200MB of size... is there a limit for NSURLConnection other than the timeout? and also for NKAssetDownload since my app uses newsstand features. Apple recommends using a single connection for a single issue, and there for recommends using zip files. The file size is already optimized. Any thoughts?
Asked
Active
Viewed 165 times
0
-
2Don't use up the user's limited monthly data plan like that. – SLaks Jan 06 '14 at 19:35
-
1@SLaks It might be over wifi. – Corey Ogburn Jan 06 '14 at 19:37
-
Related: http://stackoverflow.com/q/6215095 – Robert Harvey Jan 06 '14 at 19:39
1 Answers
2
NSURLConnection
can work with gigabytes of data. There is no limit tied to NSURLConnection
. Disk space and keeping the app running during the download are the real limits. And obviously don't keep all of the data in memory. Write to a file as you get the data.

rmaddy
- 314,917
- 42
- 532
- 579