Remove white shadow on tabbar

Shaheer Palollathil

I am using customized UITabbar in my app. When a tab is selected tabbaritem icon is shown with a white shadow. Is there any way to remove this? i have tried a lot but i did not get any solution. the screen shot is below.

enter image description here

Nishant Tyagi

Add this line in your code :

[[UITabBar appearance] setSelectionIndicatorImage:[[UIImage alloc] init]];

Hope it helps you.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related