将 iPhone DatePicker“蓝色今天日期”更改为

发布于 2024-12-02 20:12:09 字数 116 浏览 0 评论 0原文

我想知道是否可以以编程方式更改蓝色今天的日期而不删除并重新加载日期选择器?

iPhone 日期选择器

I want to know if it's possible to changed programmatically the blue todays date without delete and reload the date picker ?

iPhone DatePicker

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

躲猫猫 2024-12-09 20:12:09

不,没有办法做你想做的事。

No, there is no way to do what you want.

水溶 2024-12-09 20:12:09

您可以使用该

- (void)setDate:(NSDate *)date animated:(BOOL)animated

方法。

例如,

[myDatePicker setDate:someNSDate animated:YES];

它是 UIDatePickerClass 的唯一实例方法(请参阅 文档了解更多详细信息)。

You can use the

- (void)setDate:(NSDate *)date animated:(BOOL)animated

method.

e.g.

[myDatePicker setDate:someNSDate animated:YES];

It's the only instance method of the UIDatePickerClass (see documentation for more details).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文