How do I make a tab bar transparent in cocoa touch?
Now with iOS 5 you can change the UITabBar appearance to make only the background transparent with a simple line of code:
[[UITabBar appearance] setTintColor:[[UIColor alloc] initWithRed:0 green:0 blue:0 alpha:0.2]];