在Swift中设置UIDatePicker的文本颜色

我需要将我的dateselect器的文本颜色设置为白色,我已经看了一下,并试图通过创build一个名为“color”types的“textColor”keyPath,然后设置颜色来设置它,这工作正常,但当前date保持黑色。 有没有人有这个解决scheme?

您可以使用

datePicker.setValue(UIColor.whiteColor(), forKeyPath: "Color") 

或者试试

http://i.stack.imgur.com/9Z1xG.png

另一种自定义选取器的方法

 DatePicker.backgroundColor = UIColor.blueColor() DatePicker.setValue(UIColor.greenColor(), forKeyPath: "textColor") DatePicker.setValue(0.8, forKeyPath: "alpha") 

我想你正在寻找这个:

 datePicker.setValue(UIColor.whiteColor(), forKey: "textColor") datePicker.performSelector("setHighlightsToday:", withObject:UIColor.whiteColor())