1

I have an UIWebView fill form. I want to catch the input events the same way as for UITextFieldDelegate or UITextViewDelegate.

Is it possible?

Carl Veazey
  • 18,392
  • 8
  • 66
  • 81
Oleg Danu
  • 4,149
  • 4
  • 29
  • 47

1 Answers1

0

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.

alex
  • 2,121
  • 1
  • 18
  • 24
  • Too bad:( Generating HTML generated forms would make life easier:( This case I will need to generate these forms by using UITableViewCells:( Lot's of woork. – Oleg Danu Jan 11 '13 at 14:43