Hello,
So I have an application in which I am downloading a fair share of images and putting them into UIImageViews like so
The problem is that this is at the launch of the application and can take 10-15 seconds which is agonizingly boring to watch, is there any way that I could load them in a more efficient manor (Without lowering the image quality)?
If not, in your opinion is it preferable to wait 10-15 seconds at the launch of the application, or have the app delay about half a second when you swipe to the next image set?
Thanks for any help.
So I have an application in which I am downloading a fair share of images and putting them into UIImageViews like so
Code:
ImageView.image = [UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString: imageURL]]];
The problem is that this is at the launch of the application and can take 10-15 seconds which is agonizingly boring to watch, is there any way that I could load them in a more efficient manor (Without lowering the image quality)?
If not, in your opinion is it preferable to wait 10-15 seconds at the launch of the application, or have the app delay about half a second when you swipe to the next image set?
Thanks for any help.