Remove UITabbar upper border line

Awesome.Apple picture Awesome.Apple · Sep 18, 2015 · Viewed 11.8k times · Source

I have been using UITabbar in an app. There is an upper border line coming in top of the UITabbar. Refer below image :-

I Googled it and tried the suggested code like :-

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

Also

[[UITabBar appearance] setShadowImage:nil];

self.navigationController.toolbar.clipsToBounds = YES;

But none of them is working. Any solution?

enter image description here

Answer

Allen picture Allen · Feb 8, 2017

tabBar.clipsToBounds = YES; is work for me.