Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Tab Bar Icon Size

Apple says:

Depending on the device and orientation, the system displays either a regular or compact tab bar. Your app should include custom tab bar icons for both sizes.

Unfortunately, they fail to specify when you get which.

Also I might include those images for both sizes, but will the system switch between them automatically (how?) or do I have to do it myself?

like image 475
Alper Avatar asked Mar 26 '18 13:03

Alper


People also ask

What size are tab icons?

Most desktop browsers: 16x16, 32x32, "as big as possible" Android Chrome: 192x192.

How do I make my tab icon bigger?

Settings > Display > Screen Zoom This might be what you're looking for.

How tall is iOS tab bar?

In iOS 12, iPad tab bars have also changed height from 49 to 50 points tall. This removes the height differences between toolbars and tab bars on iPad. On iPhone tab bars remain 49 points tall in portrait and 32 points tall in landscape.

How do I make the icons on my tab smaller?

Right-click any blank space on your desktop. From the menu, select “View,” and choose your desired icon size—large, medium, or small—from the options.


1 Answers

You should not do this yourself system can do it automatically.

here is Apple Human Interface Guidelines, where you can find icon resolutions: https://developer.apple.com/ios/human-interface-guidelines/icons-and-images/custom-icons/

for example: If you are using circular icons for tab bar item you should create following sizes for portrait mode:

  • 75px × 75px (25pt × 25pt @3x)
  • 50px × 50px (25pt × 25pt @2x)
  • 25px × 25px (25pt × 25pt @1x)

and for landscape mode:

  • 54px × 54px (18pt × 18pt @3x)
  • 36px × 36px (18pt × 18pt @2x)
  • 18px × 18px (18pt × 18pt @1x)

after you add this icons into Assets.xcassets or somewhere, you can select Tab Bar Item icons from storyboard:

select Tab Bar item and in the attributes inspector, choose portrait image for image field, and landscape image for landscape field.

After that system will do everything for you.

enter image description here

like image 191
Jabson Avatar answered Sep 20 '22 16:09

Jabson