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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了给导航条设置成颜色的背景图像 : 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 ...的主要内容,如果未能解决你的问题,请参考以下文章

iOS15 UI适配之导航条主题: 背景颜色标题颜色

iOS15 UI适配之导航条主题: 背景颜色标题颜色

导航条——动态改变导航菜单的背景颜色

切换导航栏背景图像/颜色[重复]

iOS学习之UINavigationController

如何在 Swift 中更改 TabBar 的颜色?图像作为导航栏中的背景?