Skip to content

Instantly share code, notes, and snippets.

@alex-cellcity
Created September 6, 2012 07:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alex-cellcity/3652644 to your computer and use it in GitHub Desktop.
Save alex-cellcity/3652644 to your computer and use it in GitHub Desktop.
Customize UINavigationBar Height
#import "UINavigationBar+Height.h"
@implementation UINavigationBar (Height)
- (CGSize)sizeThatFits:(CGSize)size
{
CGSize newSize = CGSizeMake(self.frame.size.width, 70);
return newSize;
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment