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
Override -(void)viewWillAppear method in the viewController and Try the code below,
- (void)viewWillAppear { UINavigationBar *navigationBar = [[self navigationController] navigationBar]; CGRect frame = [navigationBar frame]; frame.size.height = 82.0f; [navigationBar setFrame:frame]; }