I need to change the selection color of UITabBar from default blue to red. How do we do this.
It is extremely easy
Create a custom class of UITabBarController and in -(void)viewDidLoad method add this line:
-(void)viewDidLoad
[[self tabBar] setSelectedImageTintColor:[UIColor greenColor]];