Can some one tell me how to change the navigation bar height?
Here is what i have so far:
CGFloat navBarHeight = 10; self.navigationController.navi
Try this code inside - (void)viewDidLayoutSubviews method,
- (void)viewDidLayoutSubviews
CGFloat navBarHeight = 10.0f; CGRect frame = CGRectMake(0.0f, 0.0f, 320.0f, navBarHeight); [self.navigationController.navigationBar setFrame:frame];