How to change Navigation Bar color:
navigationController.navigationBar.barTintColor = [UIColor greenColor];
(or)
[[UINavigationBar appearance] setBarTintColor:[UIColor greenColor]];
Set navigation bar image:
viewDidLoad:viewController.navigationItem.titleView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"yourimage.png"]]; UIBarButtonItem * item = [[UIBarButtonItem alloc] initWithCustomView:[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"yourimage2.jpg"]]]; viewController.navigationItem.rightBarButtonItem = item;
how to change navigation bar title color:
self.navController.navigationBar.titleTextAttributes = @{NSForegroundColorAttributeName : [UIColor whiteColor]};
Sign up here with your email
ConversionConversion EmoticonEmoticon