I load some images from the web in my app and draw them using UIImage drawImage. I want to keep using the same images for the retina display but smooth them with interpolation. How can we accomplish this?
I suppose I'm fine with either saving (in memory) with double resolution ahead of time or scaling at render time. It depends how much it affects performance to scale during render time.