Reputation: 987
I need to customise the UITabBar as shown in this image, for my project. Is it possible to do so? And if so, how can it be done? the selection field should have this "orange" shade
Upvotes: 1
Views: 26
Reputation: 3234
You can achieve this by doing :
yourTabBar.selectionIndicatorImage = [UIImage imageNamed:@"yourImage.png"];
Create the orange gradient as an image and use it in the code above.
Hope this helps.
Upvotes: 2