iOS Application Background Downloading
Posted
by
Hankweb
on Stack Overflow
See other posts from Stack Overflow
or by Hankweb
Published on 2011-01-02T18:31:35Z
Indexed on
2011/01/02
18:53 UTC
Read the original article
Hit count: 297
Hey! I need to know how I can have my iOS Application start a download in the background of the application (like, have the download run in the AppDelegate file) so changing ViewControllers will not interrupt or cancel the download. I also need to be able to get the progress of the download (0.00000 - 1.00000
), to set a UIProgressView
object to, which also means I need a - (void)progressDidChangeTo:(int)progress
function.
© Stack Overflow or respective owner