I want to change the background of tab bar item with some image . Can anyone help me out in this regard?
Here is what i wanted :
Also i need to know what should be the size of background image . My images are getting out of bound
I want to change the background of tab bar item with some image . Can anyone help me out in this regard?
Here is what i wanted :
Also i need to know what should be the size of background image . My images are getting out of bound
To change background colour of UITabBar
TabBarController* Tcontroller =(TabBarController*)self.window.rootViewController;
Tcontroller.tabBar.barTintColor=[UIColor greenColor];
you should calculate your image size for your tabbaritem by yourself, based on its quantity, for example if you have 4 tab items: the width of every item will be 1/4 of screen width and the height is a tablet height.