There are iPhone 6
and iPhone 6 plus
device available from apple.
- I have three pics including
@2x
and@3x
. When I load image usingUIImage imageNamed:
. - Do I need to add
@3x
ad the end of file? My naming convention ispic.png
,pic@2x.png
,pic@3x.png
. - Do I need to do like first check the running device is
iPhone 6
and then[UIImage imageNamed:@"pic@3x.png"]
or just[UIImage imageNamed:@"pic"]
and the device will automatically use the right image for the right device?