Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iOS Tab Bar icons keep getting larger

I am having a problem with my icons in my tabBar.

Tapping the same tab bar button repeatedly will keep increasing the tab bar icon's size.
If I push a different one, it goes back to its original size.

enter image description hereenter image description here

Any ideas what I should fix?

like image 842
jknapp25 Avatar asked Apr 26 '14 05:04

jknapp25


2 Answers

As per the project shared by the OP (see question comments), it seems the tab bar image insets seem to be messing things up.


Steps to resolve the issue:

  1. Select the tab bar item of the problematic ViewControllers in IB
  2. Go to Size Inspector section (on the right)
  3. Ensure your image insets are balanced
    • If you give 5px inset to top then balance with a -5px inset to bottom
    • If you give 5px inset to left then balance with a -5px inset to right

I have no explanation for this, sorry... but if anyone does then kindly comment/post

like image 168
staticVoidMan Avatar answered Sep 17 '22 18:09

staticVoidMan


try This..

myDealNavigationController.tabBarItem.imageInsets = UIEdgeInsetsMake(5, 0, -5, 0);

like image 30
ggg_1120 Avatar answered Sep 17 '22 18:09

ggg_1120