gpt4 book ai didi

ios - tableView滚动然后progressView圆角半径自动改变

转载 作者:行者123 更新时间:2023-11-29 05:33:35 26 4
gpt4 key购买 nike

我在 TableView 中添加进度 View 。我滚动 uitableView 然后跟踪角半径不显示我如何设置他的角半径。即使我也添加了图层角半径

 progressBar.layer.sublayers![1].cornerRadius = 8
progressBar.subviews[1].clipsToBounds = true

最佳答案

请使用以下swift 5.0扩展来设置圆角半径

extension UIView{
func setCorner(withRadius:Int, borderWidth:Int = 0, color: UIColor = .clear){
self.layer.cornerRadius = radius
self.layer.borderColor = color
self.layer.borderWidth = borderWidth
self.clipsToBounds = true
}
}

并将其用作

progressBar.setCorner(withRadius: 8)//what ever radius you want to set.

关于ios - tableView滚动然后progressView圆角半径自动改变,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57278855/

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