码迷,mamicode.com
首页 > 其他好文 > 详细

给导航条设置成颜色的背景图像 : UIGraphicsBeginImageContext ...

时间:2017-04-23 23:16:47      阅读:436      评论:0      收藏:0      [点我收藏+]

标签:给导航条设置成颜色的背景图像 : uigraphicsbeginimagecontext ...

self.navigationBar.setBackgroundImage(createImageWithColor(UIColor.clear), for: .default)


//////////////////////


func createImageWithColor(_ color:UIColor) -> UIImage{

    return createImageWithColor(color, size: CGSize(width: 1, height: 1))

}

func createImageWithColor(_ color:UIColor,size:CGSize) -> UIImage {

    let rect = CGRect(x: 0, y: 0, width: size.width, height: size.height)

    UIGraphicsBeginImageContext(rect.size);

    let context = UIGraphicsGetCurrentContext();

    context?.setFillColor(color.cgColor);

    context?.fill(rect);

    

    let theImage = UIGraphicsGetImageFromCurrentImageContext();

    UIGraphicsEndImageContext();

    return theImage!;

}



给导航条设置成颜色的背景图像 : UIGraphicsBeginImageContext ...

标签:给导航条设置成颜色的背景图像 : uigraphicsbeginimagecontext ...

原文地址:http://9507270.blog.51cto.com/9497270/1918611

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!