iOS7 - Change UINavigationBar border color
Is it possible to change the grey border-bottom color of the UINavigationBar in iOS7? I already tried to remove to border, but this is not working: [[UINavigationBar appearance] setShadowImage:[[UIImage alloc] init]]; Thanks! This will help you :) [self.navigationController.navigationBar.layer setBorderWidth:2.0];// Just to make sure its working [self.navigationController.navigationBar.layer setBorderColor:[[UIColor redColor] CGColor]]; You are removing the shadow but not the border, you need to do the following: [[UINavigationBar appearance] setBackgroundImage:[[UIImage alloc] init]