How to add image in place of text in navigation bar ?
Can you show me how ?
rajivpradeep
2010-10-21 05:59:50
A:
UINavigationBar is a subclass of UIView. Thus, you can create your UIImageView object and add it as a subview in your UINavigation bar.
[navigationBar addSubview:imageView];
One thing you need to keep in mind that the navigationbar dimensions which is 320X44 in Portrait & 480X20 points in landscape for iPhone.
Sagar
2010-10-21 06:03:17
A:
u can create an image view with some image and add it to the title view of navigation bar
like:--
self.navigationItem.titleView = myImageView;
pankaj kainthla
2010-10-21 06:30:34
you can put in particular view did load for differnt images or put them in delegate class where u unitialized navigation controller for the first time to show that image on whole project
pankaj kainthla
2010-10-21 07:09:43