gpt4 book ai didi

ios - 扩展 UIPickerView 以更改标题颜色

转载 作者:行者123 更新时间:2023-11-30 14:00:23 24 4
gpt4 key购买 nike

我希望应用程序中的所有 UIPickerView 都具有白色文本。我可以让它在单个选择器 View 中正常工作,但我希望它适用于所有情况。

我已经走到这一步了...

extension UIPickerView {
func pickerView(pickerView: UIPickerView, attributedTitleForRow row: Int, forComponent component: Int) -> NSAttributedString? {
let titleData = ?????
let colorTitle = NSAttributedString(string: titleData, attributes: [NSForegroundColorAttributeName:UIColor.whiteColor()])
}

但是,我不想真正更改文本......只是颜色。如何获取指定行的标题(文本),以便可以将其作为 NSAttributedString 返回?

谢谢。

最佳答案

我最终创建了 UIDatePicker 的子类并重写了 addSubView 方法。下面的代码对我来说效果很好。

class ColoredDatePicker: UIDatePicker {
var changed = false
override func addSubview(view: UIView) {
if !changed {
changed = true
self.setValue(UIColor.whiteColor(), forKey: "textColor")
}
super.addSubview(view)
}
}

关于ios - 扩展 UIPickerView 以更改标题颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33068728/

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