I have an app and would like to make it retina display friendly.
How exactly does the process work? What images need to be added apart from what I have?
I know t
The main thing about working with retina image is that image name convention. And the size of image should be 2times greater than regular1. Example- if your icon name for regular is icon.png then it should be icon@2x.png for retina.And second thing is size for regular is 72*72 then it should be 144*144 for Retina. It might be helpful for you.
Thnks