HTML Content fit in UIWebview without zooming out
Here’s what you do: In your UI controller that owns the web view, make it a UIWebViewDelegate. Then where you set the URL to load, set the delegate as the controller: NSString *urlAddress = @”http://dl.dropbox.com/u/50941418/2-build.html”; NSURL *url = [NSURL URLWithString:urlAddress]; NSURLRequest *requestObj = [NSURLRequest requestWithURL:url]; [webView loadRequest:requestObj]; webView.delegate = self; And finally implement the webViewDidFinishLoad: … Read more