I can never remember how to handle retina display images versus non-retina display imagesĀ in the toolbar so here’s a reminder:
Add the 2 files to your project:
1 2 |
image.png image@2x.png |
Then call it the same way on all screen densities:
1 |
[UIImage imageNamed:@"image.png"]; |
UIImage will determine the right one to use. If using Interface Builder, point to the image.png and not the @2x image.