Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个显示 DatePicker 的按钮。当应用程序启动时,它会显示当前日期。
但是当我选择另一个日期并隐藏选择器视图并再次尝试查看我的日期选择器时,它不会显示当前日期。
我该如何解决这个问题?
因此,每当您显示日期选择器时,请将当前日期设置为日期选择器。
datepicker.date = [NSDate date];
文档
您可以使用以下简单代码为日期选择器设置所选日期:
[DatePicker setDate:[NSDate date]];
或者:
DatePicker.date = [NSDate date];
您可以为所选日期使用任何值,因此日期选择器在打开时显示该日期
你也可以使用:
[DatePicker setDate:[NSDate date] animated:YES];
在选择器打开时为所选行添加动画