对于 Uiimageview 如何在 ios swift 4 中将 CGgradient 背景颜色设置为背景颜色?

Posted

技术标签:

【中文标题】对于 Uiimageview 如何在 ios swift 4 中将 CGgradient 背景颜色设置为背景颜色?【英文标题】:For Uiimageview how to set the CGgradient background colour as background colour in ios swift4? 【发布时间】:2018-01-29 06:43:00 【问题描述】:
var navigationImageView:UIImageView! = UIImageView()
navigationImageView.frame = (0,0,320,64)

var gradient = CAGradientLayer()
let gradientDark = UIColor(red: 148/255.0, green:210/255.0, blue: 245/255.0, alpha: 1.0)
let gradientLight = UIColor(red: 222/255.0, green:247/255.0, blue: 230/255.0, alpha: 1.0)
let gradientLight1 = UIColor(red: 245/255.0, green:247/255.0, blue: 206/255.0, alpha: 1.0)
gradient.frame = navigationImageView.bounds

let color1 = gradientDark.cgColor
let color2 = gradientLight.cgColor
let color3 = gradientLight1.cgColor

gradient.colors = [color1, color2, color3]

gradient.colors = [gradientDark.cgColor,gradientLight.cgColor,gradientLight1.cgColor];

navigationImageView.layer.insertSublayer(gradient, at: 0)

它不起作用...如何设置cgradient图像背景颜色?

【问题讨论】:

你的图片是 png 吗?如果您想看到添加到 imageView 的渐变,您的图像必须是透明的,否则加载的图像将隐藏添加的渐变,否则将渐变作为顶层添加到 imageView 图片是png格式 你想设置图像和渐变还是只设置渐变?并且您想在导航中设置渐变,以便我可以帮助您 【参考方案1】:

您可以从渐变中制作图像并将其设置在imageView

let gradient = CAGradientLayer()
let screenWidth = UIScreen.main.bounds.size.width
let defaultNavigationBarFrame = CGRect(x: 0, y: 0, width: screenWidth, height: 64)
gradient.frame = defaultNavigationBarFrame

//colors
let gradientDark = UIColor(red: 148/255.0, green:210/255.0, blue: 245/255.0, alpha: 1.0)
let gradientLight = UIColor(red: 222/255.0, green:247/255.0, blue: 230/255.0, alpha: 1.0)
let gradientLight1 = UIColor(red: 245/255.0, green:247/255.0, blue: 206/255.0, alpha: 1.0)

gradient.colors = [gradientDark.cgColor,gradientLight.cgColor,gradientLight1.cgColor]
// Create image.
let imageBG: UIImage = self.gradientImage(fromLayer: gradient)

如果你想在导航栏中设置。

self.navigationController?.navigationBar.setBackgroundImage(imageBG,
                                                                for: .default)

从渐变创建图像。

func gradientImage(fromLayer layer: CALayer) -> UIImage 
    UIGraphicsBeginImageContext(layer.frame.size)

    layer.render(in: UIGraphicsGetCurrentContext()!)

    let outputImage = UIGraphicsGetImageFromCurrentImageContext()

    UIGraphicsEndImageContext()

    return outputImage!

【讨论】:

这个方法不起作用..它在gradientImage函数内部崩溃

以上是关于对于 Uiimageview 如何在 ios swift 4 中将 CGgradient 背景颜色设置为背景颜色?的主要内容,如果未能解决你的问题,请参考以下文章

如何在 iOS 中保存 UIImageView 数据

如何在 iOS 上的 UIScrollView 中正确替换 UIImageView 中的图像

如何在 iOS 中使用 UIImageview 添加 UIScrollview 的页面控件

iOS - 如何在 UIImageView 上添加显示字符串

如何在ios目标c的UIImageView中添加UIView

如何在 UIImageView iOS 上设置阴影渐变图像