I\'ve read plenty of requests about a full-on custom UINavigationBar background, but what I want is to overlay a logo on the default UINavigationBar in
UINavigationBar
Neat tricks, Shadow.
If you just want to add a logo instead of a title, that's easy. Set the titleView on your navigationItem, like so:
UIImageView *imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"Logo"]]; self.navigationItem.titleView = imageView; [imageView release];