This is more of a design question.
I'd like to understand how to deal with image scale when it comes to different iphone screen sizes: 3.5 and 4 inches. I have a full-screen 568pt image for the 4inch screen. Should I create a separate image for the 3.5 case or scale down the original image? And while doing this, do I need to put a bunch of if / else blocks in my code to check the device type to determine which image to use?
Is there a cleaner way to do this?