iPhone – How set uinavigationbar height?
Create a UINavigationBar Category with a custom sizeThatFits. @implementation UINavigationBar (customNav) – (CGSize)sizeThatFits:(CGSize)size { CGSize newSize = CGSizeMake(self.frame.size.width,70); return newSize; } @end