Change UINavigationBar Height
问题 Can some one tell me how to change the navigation bar height? Here is what i have so far: CGFloat navBarHeight = 10; self.navigationController.navigationBar.frame.size.width = navBarHeight; 回答1: You can create a category class based on UINavigationBar like this .h file #import UIKit/UIKit.h @interface UINavigationBar (myNave) - (CGSize)changeHeight:(CGSize)size; @end and .m file #import "UINavigationBar+customNav.h" @implementation UINavigationBar (customNav) - (CGSize)sizeThatFits:(CGSize