在iOS12或更低版本中,我是这么隐藏分割线的,如下,但是这种方式在iOS 13中不好用了。
[[UITabBar appearance] setBackgroundImage:[UIImage new]];
[[UITabBar appearance] setShadowImage:[UIImage new]];
另外如下的这种方式,在iOS 13是可以隐藏掉分割线的,但是我有在tabbar上加了自定义view的需求,并不希望自定义view超出部分被切掉。
[UITabBar appearance].layer.borderWidth = 0.0f;
[UITabBar appearance].clipsToBounds = YES;
请问,谁有什么办法吗?在iOS 13, 隐藏掉tabbar顶部的分割线。