0

in my project I used datepicker and in the iOS part while I am choosing a date, datepicker triggers the DateSelected method without tapping 'Done' button. Is there any solution?

1 Answers1

1

As @hvaughan3 mentioned , this is the default behavior for iOS.

On DatePicker control you can capture

  • DateSelected : fires everytime when change the date

  • Unfocused : fires when click Done button or focus another control.

You can use Unfocused to implement your requirement.

ColeX
  • 14,062
  • 5
  • 43
  • 240