If you are using a UIWebView, you can execute any custom javascript code on your web page from your app code.
So, if you're familiar with javascript, DOM and HTML (and maybe CSS) that would not be a problem for you.
For example, say you have a div (or whatever, tr, td or anything with HTML contents) in your web page with id = "country" and you want to make textual contents(HTML) of that div available in your code:
...html...
<div id="country">
Inner html of country div
</div>
...html...
Then in your app code, after your web page had finished loading into a web view, call:
NSString* innerHTML = [webView stringByEvaluatingJavaScriptFromString:@"document.getElementById(\"country\").innerHTML"];
That's it, your have data from desired div. You can use this approach to gain any data from a web page in web view, varying executed javascript code.