I have tab base application I want to add logo to the navigation bar I tried
(void)viewDidLoad { [super viewDidLoad];
// add image
UIImage *image = [UIImage imageNamed:@"test.png"]; UIImageView *imageView = [[UIImageView alloc] initWithImage:image]; self.navigationItem.titleView = imageView;
}
but no image be displayed any suggestion to solve that
best regards