Swift下隐藏navigationBar下面那天横线

前端之家收集整理的这篇文章主要介绍了Swift下隐藏navigationBar下面那天横线前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。


说实话Google了一大圈,最后还是在Stack Overflow上找到了自己想要的答案,但是在swift里面还像没有imageWithColor方法,只能自定义

下面是代码

func shadowImageLine() -> Void {
        self.navigationController?.navigationBar .setBackgroundImage(imageWithColor(UIColor.redColor()),forBarMetrics: UIBarMetrics.Default)
        self.navigationController?.navigationBar.shadowImage = UIImage()
    }
    func imageWithColor(color: UIColor) -> UIImage{
        let rect = CGRectMake(0.0,0.0,1.0,1.0)
        UIGraphicsBeginImageContext(rect.size)
        let context = UIGraphicsGetCurrentContext()
        
        CGContextSetFillColorWithColor(context,color.CGColor)
        CGContextFillRect(context,rect)
        
        let image = UIGraphicsGetImageFromCurrentImageContext()
        UIGraphicsEndImageContext()
        return image
    }

这是最终的效果

原文链接:https://www.f2er.com/swift/323497.html

猜你在找的Swift相关文章