Is it possible to add an image to the nav bar? The image should be viewed only in a certain view (i.e. not throughout the application)… Example with an earth icon:
https://i.stack.imgur.com/FsyH8.png
UIImageView *imgView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 100, 50)];
imgView.image = [UIImage imageNamed: @"1.bmp"];
[self.navigationController.navigationBar addSubview:imgView];
[self.navigationController.navigationBar bringSubviewToFront:imgView];
[imgView release];
Yup! Same way you would add any other subView to a view.