I need to subclass a UITabBar
and increase its size.
I made it with code
-(CGSize)sizeThatFits:(CGSize)size
{
CGSize sizeThatFits = [super sizeThatFits:size];
sizeThatFits.height = kTabBarHeight;
return sizeThatFits;
But this stretches it. How can I increase it without stretching? I need some clear area.