In my app, i want to add image(logo) in Navigation bar. I am working on XCode 4.2 and iOS 5.
I know UINavigationBar, UIToolBar has been cha
UINavigationBar
UIToolBar
Another way without using a viewController
// Create your image UIImage *image = [UIImage imageNamed: @"logo.png"]; UIImageView *imageview = [[UIImageView alloc] initWithImage: image]; // set the image view to the title view self.navigationItem.titleView = imageview;