Elsammak
Elsammak

Reputation: 1138

Weird Tabbar animation when pop UIViewController

I face a weird behavior when poping UIViewCotnroller.

enter image description here

I notice it occurs for me on Whatsapp on my iOS12 too (but not frequently).

Upvotes: 1

Views: 66

Answers (1)

Elsammak
Elsammak

Reputation: 1138

I got the answer is that it's an issue in iOS 8/9/10/11 and 12 and also occured in whatsapp. The answer I found is to set the Translucent to false.

[self.tabBar setTranslucent:false];

of Swift

self.tabBar.translucent = false

Upvotes: 1

Related Questions