Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IOS Tab bar image size and resolution

I would like to add images to each one of my tab bar items. According to iOS Human Interface Guidelines the custom icons should have the following sizes: enter image description here

In Xcode for each image set it is required to prepare 3 images with different resolutions (1x, 2x and 3x). In this guidelines it is not noted what must be the sizes for these images.
My question is according to ios guidelines what must be the sizes and resolutions for 1x, 2x and 3x images?

like image 675
Vah.Sah Avatar asked Feb 04 '23 20:02

Vah.Sah


2 Answers

i think you should see this document https://developer.apple.com/ios/human-interface-guidelines/icons-and-images/custom-icons/

@1x : 25 x 25 (max: 27.67 x 27.67)

@2x : 50 x 50 (max: 56 x 56)

@3x : 75 x 75 (max: 83 x 83)

enter image description here

like image 130
Amr Angry Avatar answered Feb 13 '23 05:02

Amr Angry


50 x 50 px is 2x, 75 x 75 px is 3x, so 1x is 25 x 25 px

like image 21
pho_pho Avatar answered Feb 13 '23 06:02

pho_pho