I'm lazy loading images from the web and tossing them into UIImageViews that I create in a Nib. On a retina iPad the images that are scaled down look a lot better than the images at their normal resolution. Even though they look better those images have to be resized which would cause a performance hit, right? Should I make the UIImageViews the size of the UIImages?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Your images should not be resized to the size of the image view, but to Setting it to this precise size will require the fewest cycles (and thus get the best performance) on render. |
|||||
|