I have an app that sometimes needs its navigation bar to blend in with the content.
Does anyone know how to get rid of or to change color of this annoying little ba
-(void)viewWillAppear:(BOOL)animated { [super viewWillAppear:animated]; UIImage *emptyImage = [UIImage new]; self.navigationController.navigationBar.shadowImage = emptyImage; [self.navigationController.navigationBar setBackgroundImage:emptyImage forBarMetrics:UIBarMetricsDefault]; }