Skip to content

Instantly share code, notes, and snippets.

@jeepkd
Created March 1, 2016 18:17
Show Gist options
  • Save jeepkd/39269c72437a6f3b08b5 to your computer and use it in GitHub Desktop.
Save jeepkd/39269c72437a6f3b08b5 to your computer and use it in GitHub Desktop.
Resize UITabBar
@implementation MyTabBar
-(CGSize)sizeThatFits:(CGSize)size
{
CGSize sizeThatFits = [super sizeThatFits:size];
sizeThatFits.height = 100;
return sizeThatFits;
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment