I have an app that uses a service to get some icons.
With this service I can get any image of any size, so I\'ve planned to get the 3 images (@1x, @2x and @3x) and
Use
[UIScreen mainScreen].scale;
this will give you the exact scale as per device.
In Swift 3
UIScreen.main.scale
Cheers.