Search code examples
iphoneobjective-cxcodeuitabbaruitabbaritem

How to move title of UITabBarItem?


Can somebody tell me please how can I move title of UITabBarItem for example 2px to top?


Solution

  • Solution:

    UITabBarItem *item = [tabBar.items objectAtIndex:0]; 
    item.titlePositionAdjustment = UIOffsetMake(0, -5.0);