How to download large files using objective c on iphone

后端 未结 2 1671
情话喂你
情话喂你 2021-01-07 01:55

I ve written an app that downloads files from a sever via http. The users will always be on WLAN when using my app. It downloads files of <10MB without any issues but the

相关标签:
2条回答
  • 2021-01-07 02:22

    I would recommend using ASIHTTPRequest library.

    It can download files on the background without blocking your app, and can even hook into into a progress bar or something like that. The "How to use it" provides lots of examples and sample code.

    0 讨论(0)
  • 2021-01-07 02:23

    Second on the ASIHTTPRequest library, it really is very good. In addition, try downloading a much smaller part of the file(s) for a given request (I'm assuming they are XML or JSON files). Only get more data if the user is requesting it (eg, user is scrolling past a certain point in a tableview). Something to consider anyway.

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