Downloaded IOS5 SDK yesterday, and this code which I use to set my UIToolbar's background to a custom image stopped working. If I set the target to IOS4.3 and below it still works.

[self.bizToolbar insertSubview:[[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"navbar-iphone.png"]] autorelease] atIndex:0];

Anybody encountered this yet on IOS 5?

link|improve this question

20% accept rate
2  
iOS5 is under NDA so I think you can discuss it on apple's dedicated forums only – Vladimir Jun 8 '11 at 18:36
feedback

5 Answers

up vote 16 down vote accepted

You can use: [[UINavigationBar appearance] setBackgroundImage:toolBarIMG forBarMetrics:UIBarMetricsDefault]; (new in iOS 5)

link|improve this answer
This is brilliant, as it neatly sets the background for all your nav bars, you don't have to do it to each of them. Thanks for pointing me in the right direction. – Chris Nov 9 '11 at 0:24
Any equivalent for UIToolbar? – Chris Nov 9 '11 at 0:31
6  
[[UIToolbar appearance] setBackgroundImage:barsBack forToolbarPosition:UIToolbarPositionAny barMetrics:UIBarMetricsDefault] – Chris Nov 9 '11 at 0:33
feedback

Suppose you linked iOS5 beta SDK, you could do something like this

if([navigationBar respondsToSelector:@selector(setBackgroundImage:forBarMetrics:)] ) {
        //iOS 5 new UINavigationBar custom background
        [navigationBar setBackgroundImage:image forBarMetrics: UIBarMetricsDefault];
} 

To realize this, take a look at here iOS 4.3 to iOS 5.0 API Differences and search for "UINavigationBar.h"

or take a close look at the new method signature here setBackgroundImage:forBarMetrics:

Also here is the UIBarMetrics enum type

Hope this helps.

link|improve this answer
Thank you so much! This worked perfectly – shabzco Aug 4 '11 at 15:51
feedback

This worked on my toolbar:

//toolBar background image set based on iOS version
    [[UIDevice currentDevice] systemVersion];

    if ([[[UIDevice currentDevice] systemVersion] floatValue] > 4.9) {

        //iOS 5
        UIImage *toolBarIMG = [UIImage imageNamed: @"toolBar_brown.png"];  

        if ([toolBar respondsToSelector:@selector(setBackgroundImage:forToolbarPosition:barMetrics:)]) { 
            [toolBar setBackgroundImage:toolBarIMG forToolbarPosition:0 barMetrics:0]; 
        }

    } else {

        //iOS 4
        [toolBar insertSubview:[[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"toolBar_brown.png"]] autorelease] atIndex:0]; 

    }
link|improve this answer
3  
There's no need to check for the system version (and this is generally not a good practice), because the -respondsToSelector check should be enough to determine whether to use the new way or old way of doing this. – Brad Larson Nov 17 '11 at 17:51
ios5 working well but ios 4 is not responding. what should i do? – Cocoa Matters Mar 19 at 10:29
feedback

This method is not documented and relies on specific subviews structure of UIToolbar which can be changed from version to version. So that exactly what probably happened with iOS5 release

P.S. If you check updated UIToolBar class reference you'll find another way to customize UIToolBar

link|improve this answer
Validmir thanks for the pointer. I will check the documentation. I tried this for now and it works across all IOS versions. @interface WoodenToolbar : UIToolbar {} - (void)drawRect:(CGRect)rect; @end @implementation WoodenToolbar - (void)drawRect:(CGRect)rect { UIImage *image = [UIImage imageNamed:@"navbar-iphone.png"]; [image drawInRect:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)]; } @end – Stack Jun 8 '11 at 18:47
feedback

This is along the same line as Simone's answer, but works for iOS 5 and iOS < 5. This is what I'm using in app. You need to call [UINavigationBar setupIos5PlusNavBarImage] somewhere in your app initialization (applicationDidFinishLaunching: is a good candidate). On iOS 5+, setupIos5PlusNavBarImage will use the new UIAppearance protocol to set the background and the drawRect override will be ignored. On iOS < 5, setupIos5PlusNavBarImage will basically be a no-op and the drawRect will handle drawing the image.

Interface:

@interface UINavigationBar (CustomNavigationBar)

+ (void) setupIos5PlusNavBarImage;

- (void) drawRect: (CGRect) rect;

@end

Implementation:

@implementation UINavigationBar (CustomNavigationBar)

+ (void) setupIos5PlusNavBarImage
{
    if ([UINavigationBar respondsToSelector: @selector(appearance)])
    {
        [[UINavigationBar appearance] setBackgroundImage: [UIImage imageNamed: @"menuBar.png"] forBarMetrics: UIBarMetricsDefault];
    }
}

- (void) drawRect: (CGRect) rect
{
    UIImage* img = [UIImage imageNamed: @"menuBar.png"];
    [img drawInRect: CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)];
}

@end
link|improve this answer
feedback

protected by NikiC Nov 17 '11 at 18:03

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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