Inner shadow example
I\'m trying to put nav bar below the other one to make it look like one tall nav bar. But in iOS 7 UINavigationBar now has inner shadow on top and o
If your app support only iOS 6.0+, you can simply add below line:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { ... [[UINavigationBar appearance] setShadowImage:[UIImage new]]; ... }