Reputation: 1138
I face a weird behavior when poping UIViewCotnroller.
I notice it occurs for me on Whatsapp on my iOS12 too (but not frequently).
Upvotes: 1
Views: 66
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