OStack程序员社区-中国程序员成长平台

标题: iOS 9.2 UIDatePicker 组件当前选择的组件行的文本颜色没有改变 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-12 20:26
标题: iOS 9.2 UIDatePicker 组件当前选择的组件行的文本颜色没有改变

我无法更改UIDatePicker的每个组件行的字体大小和当前选定组件行的文本颜色。

在 ViewDidLoad 中,我的代码是:

    self.dPicker.backgroundColor = [UIColor grayColor];
    [self.dPicker setValue:[UIColor whiteColor] forKey"textColor"];

是受苹果限制吗?

enter image description here



Best Answer-推荐答案


没有任何API可以改变UIDatePicker

的外观

如果你也想这样做,你可以使用 swift:

请参阅此以了解 UIDatePicker

的可自定义实现

https://github.com/prolificinteractive/PIDatePicker

如果你想改变选定行的颜色,那么你需要改变行颜色的字体颜色或选择指示器

UIView *abc = [[UIView alloc] initWithFrame:CGRectMake(20, 130, 280, 44)];
abc.backgroundColor = [UIColor redColor];

abc.alpha = 0.5f;
[yourDatePicker addSubview: abc];

试试这个颜色:

yourDatePicker.backgroundColor = UIColor.redColor()
yourDatePicker.setValue(UIColor.blueColor(), forKeyPath: "textColor")
yourDatePicker.setValue(0.8, forKeyPath: "alpha")

关于iOS 9.2 UIDatePicker 组件当前选择的组件行的文本颜色没有改变,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37694576/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4