iOS12.1正式版,控制器pop返回,出现TabBarItem
2018-11-09 本文已影响0人
_MahnT
iOS12.1真机调试
push控制器 hidesBottomBarWhenPushed
pop返回的时候,出现tabbarItem偏移,pop返回完成后,偏移恢复正常。
目测是apple的BUG,现在简单的避免方法是在AppDelegate里面加:
[[UITabBar appearance] setTranslucent:NO];
正常~
iOS12.1真机调试
push控制器 hidesBottomBarWhenPushed
pop返回的时候,出现tabbarItem偏移,pop返回完成后,偏移恢复正常。
目测是apple的BUG,现在简单的避免方法是在AppDelegate里面加:
[[UITabBar appearance] setTranslucent:NO];
正常~