swift Swift3删除tabar顶行并给出一个自定义tabar

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swift Swift3删除tabar顶行并给出一个自定义tabar相关的知识,希望对你有一定的参考价值。

    //MARK:清除顶部线条
    fileprivate func clearTabBarTopLine(){
        
        let rect = CGRect(x: 0, y: 0, width: UIScreen.main.bounds.width, height: UIScreen.main.bounds.height)
        UIGraphicsBeginImageContext(rect.size)
        
        let context = UIGraphicsGetCurrentContext()
        
        context?.setFillColor(UIColor.clear.cgColor)
        
        context?.fill(rect)
        
        let img = UIGraphicsGetImageFromCurrentImageContext()
        UIGraphicsEndImageContext()
        self.tabBar.backgroundImage = img
        self.tabBar.shadowImage = img
    }

以上是关于swift Swift3删除tabar顶行并给出一个自定义tabar的主要内容,如果未能解决你的问题,请参考以下文章

swift3 scrollToRow 即使有空单元格

关于swift 自定义TabBarView使用系统tabar遇到的问题

swift 3 alamofire - 获取请求给出响应序列化失败

无法隐藏状态栏—Swift 3,[重复]

表格视图单元格向左移动(swift3)

如何在 swift3 中删除 .DS_Store