I have an UIWebView fill form. I want to catch the input events the same way as for UITextFieldDelegate or UITextViewDelegate.
Is it possible?
I have an UIWebView fill form. I want to catch the input events the same way as for UITextFieldDelegate or UITextViewDelegate.
Is it possible?
It is impossible, because elements(textfields and others) on uiwebview form are not cocoa touch objects. So,they can transmit events to your application through its responder chain.
U can make validation,using javascript,but it's not application's bussiness.This should be done on server side,which provides u this form.