i want to download the zip file from web but unable to figure out that how it is possible
i can download image /text/xml file but unable to download a zip file
Can someone guide me how to download zip files from web?
Thanks
i want to download the zip file from web but unable to figure out that how it is possible
i can download image /text/xml file but unable to download a zip file
Can someone guide me how to download zip files from web?
Thanks
If you're using
NSURLConnection
, it works exactly the same way no matter which type the file has.Example: (typed off of my head, no guarantee that it works this way and you should obviously implement error checking)
Then you must handle the incoming data in the delegate methods, e.g. to just save your data:
Take a look at the other delegate methods and implement them, you should deal with authentification challenges and fail responses. You can also for example set:
in
connection:didReceiveResponse:
and set it toNO
again inconnectionDidFinishLoading:
.