Newbie Question.

I have a UIWebView that I push HTML code into. In the HTML code is an image. Is there a way to get informed that image #3 or image with name 'bob' was touched ? Some event like 'didImageWasClickedAndHereIsTheIDOfTheClickedThingy' perhaps?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

I don't think there is a good way to do this that is directly supported by UIWebView, but there is a slightly hacky way.

Add JavaScript onclick handlers to your images that do something like this:

function (imgElement) {
    document.location = "http://myapp/didClick/" + imgElement.id;
}

When the user taps the image, a request will me made, which can be intercepted by your app by implementing webView:shouldStartLoadWithRequest:navigationType: on the UIWebView's delegate.

link|improve this answer
Very interesting way indeed.hmmm... – BahaiResearch.com Feb 13 '10 at 16:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.