Is there a way to get the estimated time of On Demand Resources download?
I'd like to show an alert until they are all downloaded.
[alertDownload showCustom:self image:[UIImage imageNamed:@"icon.jpg"]
color:[UIColor blueColor]
title:@"Download..."
subTitle:@"Download in progress"
closeButtonTitle:nil
duration: ODR ETA];
Right now I have
if (request1.progress.fractionCompleted < 1) {
// code above
}
but the alert will not automatically disappear when the download is completed, it will look at the duration of the alert.