Can we skip placing image in 1x, 2x but only placing in 3x Assets.xcassets, for app size optimization purpose?
In order to increase sales, we plan to place a high number of high resolution screenshot images, within our app.
However, we do not want to increase our app size significantly.
This is our plan
imageView.kf.setImage(
with: URL(string: "https://raw.githubusercontent.com/yccheok/wenote.jstock.co/master/ios/color_custom.png"),
placeholder: UIImage(named: "color_custom")
)
User will then observe a blur image for few seconds (If he has a good internet connection), then the image will transit to a crystal clear image.
For the above use case, I was wondering, is it OK to leave 2x & 1x category as blank? Is there any side effect, of leaving 2x and 1x category blank?
Or, should I place the 1 and only 1 image, in 1x category?
Thanks.
for this specific purpose ( when you have only one image , not for icons ) , you can use single scale like this