gpt4 book ai didi

ios - 为什么自定义 UIRefreshControl 类的背景颜色在 Swift 中没有改变?

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

我创建了自定义 UIRefreshControl,如下所示:

class CustRefreshCont: UIRefreshControl {

override func draw(_ rect: CGRect) {
// Drawing code
let blueColor: UIColor = UIColor.blue
let lightGrayColor: UIColor = UIColor.lightGray

self.tintColor = blueColor
self.backgroundColor = lightGrayColor

self.attributedTitle = NSAttributedString(string: "Updating data", attributes: [NSAttributedStringKey.foregroundColor : self.tintColor, NSAttributedStringKey.backgroundColor : self.backgroundColor!])
}
}

我从 UIViewController 分配 UIRefreshControl 的方式复制如下:

    let refreshControl = CustRefreshCont()

正在显示文本和 ActivityIndi​​cator 自定义项,但背景颜色显示为黑色。

知道我的代码有什么问题吗?

最佳答案

将您的配置代码移至初始化程序。我认为 draw 方法不是执行此操作的正确位置。

override init() {
super.init()
backgroundColor = .red
tintColor = .blue
}

关于ios - 为什么自定义 UIRefreshControl 类的背景颜色在 Swift 中没有改变?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46977859/

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