vote up 1 vote down star

I need to perform search in an html page displayed in a UIWebView control. The functionality I need is something that Safari has, when you hit command/ctrl F for searching the document for some word and the program highlights the hits for you. Is there any easy solution for this problem?

flag

50% accept rate

1 Answer

vote up 2 vote down

You could do this with javascript. Check out the "Find in this page" bookmarklet: http://www.lifeclever.com/17-powerful-bookmarklets-for-your-iphone/

Something like that, combined with: http://developer.apple.com/iphone/library/documentation/uikit/reference/UIWebView_Class/Reference/Reference.html#//apple_ref/occ/instm/UIWebView/stringByEvaluatingJavaScriptFromString:

might do the trick.

link|flag
Thank you for the answer. That what I figured out myself in the meantime, too. But the bookmarklet you have mentionded, doesn't works correctly, because it ruins the html if you search for something that can be found inside the html tag. I need to use something like that: james.padolsey.com/demos/misc/… – silicosaur Jun 19 at 10:23

Your Answer

Get an OpenID
or

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