UIWebView DatePicker Login Detection

I have UIWebView

, and would like to use an internal datepicker on iOS which is used when I have a tag <input type=date>

.

I have some UIViews in iOS that I want to change based on input changes.

How can this change be determined? I hope there is a delegate that I can use, but based on my research, this is not possible.

+3


source to share


2 answers


If I understand you correctly, you want to catch the datepicker value change event? If so, you can simply create an IBAction method and hook it up to the datepicker valueChanged event in the interface constructor.



+2


source


This might help you

Calling custom date collector from web app on iOS / Android



There are several plugins that mimic the uidatepicker style in javascript.

+2


source







All Articles