You can change all views in the UINavigationBar. If you are trying to change navigation in the navigation controller, follow these steps:
self.navigationItem.titleView = [[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"image.png"] autorelease];
If you create a navigationBar do the same, but instead of calling self.navigationItem : navigationBar.topItem
klaaspieter May 14, '09 at 20:13 2009-05-14 20:13
source share