4

I have been a little bit concerned over whether I should fill up all my assets with the respective universal sizes:

enter image description here

I have around 20-30 images so it'd be a concern if I have to add three png's per asset. Is this required to submit my application? My app has run fine without the other sizes? (x2, x3)

Pablo
  • 1,302
  • 1
  • 16
  • 35

1 Answers1

0

You need image assets for all dimentions!
Think like this - you didn't provide image assets for all of them and the system start to upscaling or downscaling the image as result the system will do more work from expected. And now imagine that you put 2 or 3 in TableView or CollectionView for example. All of the scalled images must be stored somewhere ... ofcourse everything is comming with the price.

In short it is to decrease memory/disk usage so it is all about increasing performance and user experience.

Check this discussion Why do I need @1x, @2x and @3x iOS images?

Damyan Todorov
  • 536
  • 1
  • 6
  • 17