I use UIDatePicker and I want to know when scrolling in UIDatePicker is over. Thank you.
The UIDatePicker does not expose the scrolling events, but does send an event when the selected value has changed. You can use UIControlEventValueChanged to track this.
[myDatePicker addTarget:self action:@selector(dateSelected:) forControlEvents:UIControlEventValueChanged];
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With