Advertisement
undeadhip

Untitled

Nov 18th, 2014
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. CGRect oldFrame = webView.frame;
  2.    
  3.     CGFloat contentHeight = [[webView stringByEvaluatingJavaScriptFromString:[NSString stringWithFormat:@"document.body.offsetHeight;"]] floatValue];
  4.     CGFloat contentWidth = [[webView stringByEvaluatingJavaScriptFromString:[NSString stringWithFormat:@"document.body.scrollWidth;"]] floatValue];
  5.     [webView setFrame:CGRectMake(0, 0, contentWidth, contentHeight)];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement