uinavigationbar,uitoolbar,tint,bartintcolor
The solution to this issue is to set the color-values manually in the popping-up ViewController again for iOS 7. self.navigationController.toolbar.barStyle = UIBarStyleBlackTranslucent; [self.navigationController.toolbar setTintColor:[UIColor whiteColor]]; [self.navigationController.toolbar setBarTintColor:[UIColor colorWithRed:255.0/255.0 green:167.0/255.0 blue:0.0/255.0 alpha:1.0]]; self.navigationController.navigationBar.barStyle = UIBarStyleBlackTranslucent; [self.navigationController.navigationBar setTintColor:[UIColor...