gpt4 book ai didi

ios - 如何在 UIDatePicker 选定行中设置绿色?

转载 作者:行者123 更新时间:2023-11-29 12:44:51 24 4
gpt4 key购买 nike

如何在 UIDatePicker 的选定行中设置绿色。我已经搜索并放置了如下代码,

第一个是:

UILabel *label = [UILabel appearanceWhenContainedIn:[UITableView class],[UIDatePicker class], nil];
label.font = HELVETICA_NEUE(24);
label.textColor = GREEN_COLOR;

这里,绿色只设置了日期和月份,没有设置年份。并且选择器中其他未选择的日期仍应显示为黑色。

我只希望所选行为绿色。

接下来,我关注了以下链接中的 Aron 帖子:

can I change the font color of the datePicker in iOS7?

然后我在我的项目中创建了 UILabel + UIDatePickerLabel 类文件。

UIDatePicker 中的所有日期都显示为绿色,我只需要选定的行为绿色。有谁知道如何做到这一点?

最佳答案

UIView *overIndicoloe = [[UIView alloc] initWithFrame:CGRectMake(20, 130, 280, 44)];
overIndicoloe.backgroundColor = [UIColor greenColor];
overIndicoloe.alpha = 0.5f;
[yourDatePicker addSubview: overIndicoloe];

关于ios - 如何在 UIDatePicker 选定行中设置绿色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23911478/

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