解决iOS 13 tabbar 顶部有一条线

      if(@available(iOS13, *)) {

            // fix iOS13 tabbar 顶部有条线 line颜色和tabbar背景色相同

            UIView *line = [[UIView alloc] initWithFrame:CGRectMake(0, -1, [UIScreen mainScreen].bounds.size.width, 1)];

            line.backgroundColor = [UIColor whiteColor];

            [_tabbar addSubview:line];

        }

你可能感兴趣的:(解决iOS 13 tabbar 顶部有一条线)