Skip to content

Instantly share code, notes, and snippets.

@zld
Created May 29, 2015 07:41
Show Gist options
  • Save zld/906abca449c367dc4227 to your computer and use it in GitHub Desktop.
Save zld/906abca449c367dc4227 to your computer and use it in GitHub Desktop.
Adjust position of UITabBarItem's label
for (UITabBarItem* item in self.tabBarController.tabBar.items)
{
[item setTitlePositionAdjustment:UIOffsetMake(0, -3)];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment