vote up 3 vote down star
4

When I make icons for a UITabBar, it applies a gradient to the images. I need to know how to prevent it from having this gradient.

flag

2 Answers

vote up 5 vote down

This is surprisingly difficult as the UITabBar doesn't provide access to it's selected/unselected images. It can be achieved with a private API though:

@interface UITabBar (ColorExtensions)
- (void)recolorItemsWithColor:(UIColor *)color shadowColor:(UIColor *)shadowColor shadowOffset:(CGSize)shadowOffset shadowBlur:(CGFloat)shadowBlur;
@end

@interface UITabBarItem (Private)
@property(retain, nonatomic) UIImage *selectedImage;
- (void)_updateView;
@end

@implementation UITabBar (ColorExtensions)
- (void)recolorItemsWithColor:(UIColor *)color shadowColor:(UIColor *)shadowColor shadowOffset:(CGSize)shadowOffset shadowBlur:(CGFloat)shadowBlur
{
	CGColorRef cgColor = [color CGColor];
	CGColorRef cgShadowColor = [shadowColor CGColor];
	for (UITabBarItem *item in [self items])
		if ([item respondsToSelector:@selector(selectedImage)] &&
		    [item respondsToSelector:@selector(setSelectedImage:)] &&
		    [item respondsToSelector:@selector(_updateView)])
		{
			CGRect contextRect;
			contextRect.origin.x = 0.0f;
			contextRect.origin.y = 0.0f;
			contextRect.size = [[item selectedImage] size];
			// Retrieve source image and begin image context
			UIImage *itemImage = [item image];
			CGSize itemImageSize = [itemImage size];
			CGPoint itemImagePosition; 
			itemImagePosition.x = ceilf((contextRect.size.width - itemImageSize.width) / 2);
			itemImagePosition.y = ceilf((contextRect.size.height - itemImageSize.height) / 2);
			UIGraphicsBeginImageContext(contextRect.size);
			CGContextRef c = UIGraphicsGetCurrentContext();
			// Setup shadow
			CGContextSetShadowWithColor(c, shadowOffset, shadowBlur, cgShadowColor);
			// Setup transparency layer and clip to mask
			CGContextBeginTransparencyLayer(c, NULL);
			CGContextScaleCTM(c, 1.0, -1.0);
			CGContextClipToMask(c, CGRectMake(itemImagePosition.x, -itemImagePosition.y, itemImageSize.width, -itemImageSize.height), [itemImage CGImage]);
			// Fill and end the transparency layer
			CGContextSetFillColorWithColor(c, cgColor);
			contextRect.size.height = -contextRect.size.height;
			CGContextFillRect(c, contextRect);
			CGContextEndTransparencyLayer(c);
			// Set selected image and end context
			[item setSelectedImage:UIGraphicsGetImageFromCurrentImageContext()];
			UIGraphicsEndImageContext();
			// Update the view
			[item _updateView];
		}
}
@end

One can even create some pretty cool effects:

Red Tab Bar

It is very possible that Apple will reject an application for doing this. If the private API is removed in a future OS update,
-[UITabBar recolorItemsWithColor:shadowColor:shadowOffset:shadowBlur:] will do nothing instead of crashing.

link|flag
This was a good suggestion, but I chose a less complicated approach. I subclassed UIToolBar, which allowed it to adapt the functionality of a UITabBar without its control over the look and feel (UIToolBar supports custom views). – obsoleteModel81 Sep 1 at 8:29
Can anybody show me how I can implement this code in a new "Tab Bar application" project? – mofle Sep 27 at 17:46
mofie: Add the code above to your appdelegate, then add this call to applicationDidFinishLaunching: [[tabBarController tabBar] recolorItemsWithColor:[UIColor whiteColor] shadowColor:[UIColor blackColor] shadowOffset:CGSizeMake(0.0f, -1.0f) shadowBlur:3.0f]; – rpetrich Oct 6 at 21:31
vote up 0 vote down

Thank you very much for this post, but I have one other question. How did you get the nice gradient effect in the image? Did you use a modified version of the above code?

link|flag

Your Answer

Get an OpenID
or

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