How to move title of UITabBarItem?

iphone, objective-c, uitabbar, uitabbaritem, xcode

Solution

Solution:

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

Problem

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

Original source

Related problems