Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to extract the contents of the title tag from an HTML page displayed in a UIWebView. What is the most robust means of doing so?

I know I can do:

- (void)webViewDidFinishLoad:(UIWebView *)webView{
    NSString *theTitle=[webView stringByEvaluatingJavaScriptFromString:@"document.title"];
}

However, that only works if javascript is enabled.

Alternatively, I could just scan the text of the HTML code for the title but that feels a bit cumbersome and might prove fragile if the page's authors got freaky with their code. If it comes to that, what's the best method to use for processing the html text within the iPhone API?

I feel that I've forgotten something obvious. Is there a better method than these two choices?

Update:

Following from the answer to this question: UIWebView: Can You Disable Javascript? there appears to be no way to turn off Javascript in UIWebView. Therefore the Javascript method above will always work.

share|improve this question
   
+1 I also had to resort to the @"document.title" method. – Dave DeLong Feb 16 '10 at 20:06
I was just searching for this and had scary visions of parsing the HTML. Very clever solution. – margusholland Sep 7 '11 at 23:12

1 Answer

up vote 8 down vote accepted

I pretty sure those are the only options you have. UIWebView does not expose any document information directly.

share|improve this answer
You're probably right. Do you have any parsing suggestions? – TechZen Feb 16 '10 at 20:40
AFAIK, libxml2 has a HTML parsing mode. – Ole Begemann Feb 16 '10 at 20:48
Yeah, I was hoping for something simpler. I guess I can just scan for the tag and hope the html is standard. – TechZen Feb 16 '10 at 20:51
@TechZen - be very very careful with this: the webview never guarantees that it's rendering HTML. – Dave DeLong Feb 16 '10 at 21:13
Good point. That is in part why I wanted to avoid parsing at all. You never know what your going to get for input. – TechZen Feb 16 '10 at 21:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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