@implementation UINavigationBar (CustomHeight)

 - (void)layoutSubviews {   [super layoutSubviews];   CGRect barFrame = self.frame;   barFrame.size.height = height;   self.frame = barFrame; }  @end