Skip to content

Instantly share code, notes, and snippets.

@yayoc
Last active August 29, 2015 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yayoc/df17c458474193d741a5 to your computer and use it in GitHub Desktop.
Save yayoc/df17c458474193d741a5 to your computer and use it in GitHub Desktop.
get title from web view
- (void)webViewDidFinishLoad:(UIWebView *)webView
{
NSString *title = [webView stringByEvaluatingJavaScriptFromString:@"document.title"];
self.title = title;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment