Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

It seems in iOS 6, a drop shadow is automatically added to the navigation bar even when you set a custom background image. I'm pretty sure this wasn't the case with iOS 5 as when I test the same code in the iOS 5 and 6 sim, the shadow appears in iOS 6 but not 5.

Does anyone know anything about this? Or how to enable/disable it?

share|improve this question
1  
iOS 6 is beta, pre-release software and I'm pretty sure that it's under NDA right now. – Alladinian Jun 18 '12 at 13:57
I would delete this question to avoid getting all the NDA comments and post it on the dev forums provided by Apple for pre-release software. devforums.apple.com/community/ios – Bill Burgess Jun 18 '12 at 14:23
Look at the UI customization session video again – David Rönnqvist Jul 8 '12 at 18:55
Please accept one of the answers below. – TDeBailleul Oct 4 '12 at 22:06
David is right - the UI customisation video covers this exact topic. – Cthutu Oct 22 '12 at 19:45

9 Answers

up vote 30 down vote accepted

Place this in your AppDelegate

[[UINavigationBar appearance]setShadowImage:[[UIImage alloc] init]];

This is what did it for me. Hope it helps!

share|improve this answer

Also you can try this:

controller.navigationBar.shadowImage = [[[UIImage alloc] init] autorelease];

controller is a UINavigationController.

share|improve this answer
1  
Remember this only works in iOS 6. From UINavigationBar.h: /* Default is nil. When non-nil, a custom shadow image to show instead of the default shadow image...*/ @property(nonatomic,retain) UIImage *shadowImage NS_AVAILABLE_IOS(6_0) UI_APPEARANCE_SELECTOR; – José M. Gilgado Dec 4 '12 at 7:35

I know this has been solved with more complicated answers above, but this is the quickest and easiest way I hid the shadow under the navigation bar.

self.navigationController.navigationBar.clipsToBounds = YES;
share|improve this answer
This works except during rotation, when the shadow returns. Dima Korbin's answer above seems to be the most complete fix. – janineanne Oct 16 '12 at 20:40

General, non-NDA-infringing answer:

If you don't want something sticking out of a layer, mask the layer to its bounds.

[self.layer setMasksToBounds:YES];

Set the height explicitly to 44 (or 32 for landscape on iPhone) if that doesn't work on its own.

share|improve this answer
This solves the problem, but causes any UIBarButtonItems that "show touch on highlight" (the white glow) to be rendered incorrectly when tapped. – akaru Aug 3 '12 at 3:56
There is a better answer involving an image file, but that would be saying too much. – Steve Cotner Aug 13 '12 at 11:02

Setting the shadowImage to a null image does work, however, the way the solution is presented results in adding a property if the OS is earlier than iOS 6.

A better way to do something that is dependent on the existence of a property or method is:

if ([self.navigationController.navigationBar
respondsToSelector:@selector(shadowImage)]) {
self.navigationController.navigationBar.shadowImage = [[[UIImage alloc] init] autorelease];
}
share|improve this answer

There are two possible solutions, the second of which is mentioned in other answers.

  1. Add a single, transparent, pixel at the bottom of your navigation bar background image, making it 45pt tall. This disables the shadows in iOS 6.
  2. Implement the following code:

    // Omit the conditional if minimum OS is iOS 6 or above
    if ([UINavigationBar instancesRespondToSelector:@selector(setShadowImage:)]) {
        [[UINavigationBar appearance] setShadowImage:[[UIImage alloc] init]];
    }
    

Source: Advanced Appearance Customization on iOS, @27:15

share|improve this answer

I had the same problem and I've solved it by following:

CustomNavBar *navBar = (CustomNavBar *)self.navigationController.navigationBar;
        [navBar setBackgroundImage:[UIImage imageNamed:@"navigation_bar_gray.png"] forBarMetrics:UIBarMetricsDefault];
        navBar.shadowImage = [[UIImage alloc]init]; // this is what acctually removed the shadow under navigation bar 
share|improve this answer

I cannot comment so I'll add my information here.

Perhaps the above suggestions worked in the beta, but it does not seem to be the case now.

self.navigationController.navigationBar.shadowImage = [[UIImage alloc] init];

The above does not work, neither do any of the other similar answers above. I have tried them all.

Clipping to bounds does work but doesn't give the result I want as I'd like other views to hang outside the nav bar.

share|improve this answer

Note from the Apple dev docs on the subject of the shadowImage property:

Discussion: The default value is nil, which corresponds to the default shadow image. When non-nil, this property represents a custom shadow image to show instead of the default. For a custom shadow image to be shown, a custom background image must also be set with the setBackgroundImage:forBarMetrics: method. If the default background image is used, then the default shadow image will be used regardless of the value of this property.

So to use the nil UIImage hack you must also be setting a custom nav bar background image. This can be a nil image too, which results in a nice flat, clean 'metro' style nav bar :

[[UINavigationBar appearance] setShadowImage:[[UIImage alloc] init]];
        [[UINavigationBar appearance] setBackgroundImage:[[UIImage alloc] init] forBarMetrics:UIBarMetricsDefault];
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.