gpt4 book ai didi

iphone - 日期更改后的 UIDatePicker

转载 作者:太空狗 更新时间:2023-10-30 03:10:58 26 4
gpt4 key购买 nike

我刚开始在我的 iPad 应用程序中使用 UIDatePicker,但是有没有办法检查日期何时更改?

我想在日期更改时做点什么。我可以尝试什么?

最佳答案

When properly configured, a UIDatePicker object sends an action message when a user finishes rotating one of the wheels to change the date or time; the associated control event is UIControlEventValueChanged.

因此您需要添加类来处理选择器中的 UIControlEventValueChanged 事件:

[picker addTarget:self action:@selector(dateChanged:) 
forControlEvents:UIControlEventValueChanged];
...

- (void) dateChanged:(id)sender{
// handle date changes
}

关于iphone - 日期更改后的 UIDatePicker,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3785610/

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