I have an UIWebView fill form. I want to catch the input events the same way as for UITextFieldDelegate or UITextViewDelegate.
Is it possible?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.