Reputation: 20919
If i want my application to be compatible with the Retina display, am i obliged to recreate all my images by doubling their sizes? even the icon?
Upvotes: 0
Views: 885
Reputation: 4111
if you will not use high resolution images your images will look pixelated/blurr.So better to use high res images as well.Some Key points are:
float factor = [UIScreen mainScreen].scale;
Depending on the type of application you’re developing further optimizations can be made to utilize the new retina display the best you can.
hope it help you :)
Upvotes: 2
Reputation: 5942
A summary of the icons and what is required can be found in the human interface guidelines. I highly recommend providing high resolution artwork for the retina display even though it is not required. Your default now should be to design artwork at the higher resolution, then scale down for older devices. I doubt Apple would choose to highlight an application as new and noteworthy if it looks pixelated on the latest devices.
Upvotes: 1
Reputation: 1775
Maybe you'll want to take a look at iRetiner.
You could also check this previous stackoverflow thread : how to set image for ipad application that support retina display
Upvotes: 1
Reputation: 920
You're not obligated, it just will look very pixelated if you don't.
As for the icon, I believe you are obligated to provide multiple sizes when submitting to the AppStore.
Upvotes: 1