When using certain custom fonts in a UITabBarItem i'm seeing some of the characters being clipped at the bottom. I also saw this occuring on UIButton's but found a fix for that which was to subclass the UIButton and override the following method:
custom font on UIbutton title clipped on top of word
-(void)layoutSubviews
{
[super layoutSubviews];
CGRect frame = self.titleLabel.frame;
frame.size.height = self.bounds.size.height;
frame.origin.y = self.titleEdgeInsets.top;
self.titleLabel.frame = frame;
}
Unfortunately layoutSubviews isn't available to override on a UITabBarItem. Has anyone experienced this problem and found a fix for it?