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 UIKitclass 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() }}总结
以上是内存溢出为你收集整理的在iOS10中更改UIDatePicker TextColor全部内容,希望文章能够帮你解决在iOS10中更改UIDatePicker TextColor所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)