What would be the correct image size to display in an UIImageView on a retina display, when the image is loaded from Cloudinary (or another Picture-CDN)?
On the one hand, i have a Table and each TableCell has its own UIImageView with both 70px in width and height. On the other hand, i cover the whole screen in its all size with an Background-Image. Every image is loaded from Cloudinary, where i can request specific image sizes for the image-download.
Since Retina-displays needs the double size of the original picture (as far as i know), i guess, i have to request the double size of the images also from Cloudinary, isn't it?
So, for an UIImageView with a size of 70x70 Pixel, i would request the image-thumbnail with 140x140 Pixel, and for the Screen-Background-Image i would request screenWidth * 2 and screenHeight * 2 to load the image from Cloudinary.
Am i wrong or is my assumption right?