gpt4 book ai didi

ios - 在 iOS10 中更改 UIDatePicker TextColor

转载 作者:搜寻专家 更新时间:2023-10-31 21:59:39 26 4
gpt4 key购买 nike

我有一种方法可以在 iOS 10 之前的版本上更改 UIDatePicker 的文本颜色,但对于 iOS10,这些解决方案似乎不再有效。我怎样才能恢复更改 UIDatePickertextColor 的能力?

   if #available(iOS 10.0, *) {
//Not sure of a way to do something similar here.
} else {
//The following lines change the textColor of UIDatePicker to white in iOS9 and older.
self.setValue(UIColor.white, forKey: "textColor")
self.sendAction(Selector("setHighlightsToday:"), to: nil, for: nil)
}

最佳答案

似乎没有任何改变,因为我什至可以使用 Swift 3 实现它,如下所示。

import UIKit

class ViewController: UIViewController
{
override func viewDidLoad()
{
super.viewDidLoad()

let temp: UIDatePicker = UIDatePicker(frame: self.view.frame)
temp.setValue(UIColor.purple, forKey: "textColor")

view.addSubview(temp)
}

override func didReceiveMemoryWarning()
{
super.didReceiveMemoryWarning()
}
}

关于ios - 在 iOS10 中更改 UIDatePicker TextColor,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39552849/

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