iOS 12.1 跳转页面时 tabBar闪动

mac2024-11-28  23

 

最新iOS 12.1系统,self.hidesBottomBarWhenPushed = YES,tabBar发生闪动

设置为不透明就行了。[[UITabBar appearance] setTranslucent:NO];

 

Swift 中:

UITabBar.appearance().isTranslucent = false

最新回复(0)