In need a background image AND a title in my Navigation Bar. For the image I write a category:
@implementation UINavigationBar(MyNavigationBar) - (void)setBackgr
I got it!
@implementation UINavigationBar(MyNavigationBar) - (void)drawRect:(CGRect)rect { UIImage *image = [UIImage imageNamed: @"navBarBackgrd.png"]; [image drawInRect:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)]; } @end
See Background image for navigation view