I have a Root View controller, I need to know about changing its blue background to an image or changing its color and also want to add an image to its right side. For example in the below image i need to change the background of text Root View Controller to another image or change its color and add a small icon on right side of the Root View Controller text. How should I go about it? I have gone through Change Navigation bar Background image on each navigation but still having trouble implementing it.
AppDelegate.h
#import <UIKit/UIKit.h>
@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@end
Viewcontroller.h
#import <UIKit/UIKit.h>
@interface ViewController : UIViewController
@end
Try putting any of these codes into
ViewWillAppear/ViewDidAppear/didFinishLaunchingWithOptions
(in case of appDelegate).1)
navigationItem.titleView = [[UIImageView alloc] initWithImage: [UIImage imageNamed:@"urtitlebar.png"]];
OR
2)
OR
3)
EDIT:(in case you're using old version of SDK say 3.2.5)
Create the subview of
UINavigationBar
and override the method called -drawRect:(CGRect)rect
with,@end