gpt4 book ai didi

ios - 向tableview添加渐变层

转载 作者:可可西里 更新时间:2023-11-01 00:56:02 27 4
gpt4 key购买 nike

关于如何向 tableView 添加渐变层,我已经尝试了很长一段时间,并且尝试了很多不同的方法,但是无论有多少 bringSubviews,我都无法显示 table view cells或者我做的 sendSubviews。

let gradientLayer = CAGradientLayer()

gradientLayer.frame = view.bounds

gradientLayer.colors = [UIColor(red: 125/255.0, green: 125/255.0, blue: 125/255.0, alpha: 1.0).cgColor, UIColor(red: 125/255.0, green: 125/255.0, blue: 255/255.0, alpha: 1.0).cgColor]

gradientLayer.startPoint = CGPoint(x: 0.0, y: 0.0)
gradientLayer.endPoint = CGPoint(x: 0.0, y: 1.0)

tableView.layer.addSublayer(gradientLayer)

无论完成多少次 bring subviews 和 send subviews 的组合,我似乎总是得到这个并且单元格不会出现在前面:

enter image description here

有谁知道如何解决这个问题,或者如何以另一种方式做我想做的事情以使其正常工作?

非常感谢任何帮助,谢谢。

最佳答案

创建背景 View 并将其分配给TableView:

func setGradientToTableView(tableView: UITableView, _ topColor:UIColor, _ bottomColor:UIColor) {

let gradientBackgroundColors = [topColor.CGColor, bottomColor.CGColor]
let gradientLocations = [0.0,1.0]

let gradientLayer = CAGradientLayer()
gradientLayer.colors = gradientBackgroundColors
gradientLayer.locations = gradientLocations

gradientLayer.frame = tableView.bounds
let backgroundView = UIView(frame: tableView.bounds)
backgroundView.layer.insertSublayer(gradientLayer, atIndex: 0)
tableView.backgroundView = backgroundView
}

同时清除 TableView 单元格的颜色:

override func tableView(tableView: UITableView, willDisplayCell cell: UITableViewCell, forRowAtIndexPath indexPath: NSIndexPath) {
cell.backgroundColor = UIColor.clearColor()
}

关于ios - 向tableview添加渐变层,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48041519/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com