I have a Webview in which i display the html pages,there i have placed a search bar, Now I have to find a letter or a particular word that i type in the search bar, those letters or word should be highlighted with different color in the present html page. Help me out

Thanks in Advance

link|improve this question

65% accept rate
I have done this in Tableview, but i am unable to do in the webview. – Developer Jan 17 at 10:07
feedback

1 Answer

up vote 3 down vote accepted

you can search for those keyword inside your html document that you are showing on the webview .Now you can reload the webview with new html formed by replacing keyword string with <>keyword<> string .

link|improve this answer
Hi Ali Thank u for the answer can u give any sample code for it – Developer Jan 17 at 10:20
2  
hi ., you can try like this [html stringByReplacingOccurrencesOfString:[@"keyword" withString:@"<b>keyword</b>"]; [webview loadHTMLString:html baseURL:nil]; – Ali3n Jan 17 at 10:26
feedback

Your Answer

 
or
required, but never shown

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