Hello All, Following lines of code will help you to load url in UIWebView and make it fit to IPhone screen.
In .h file
IBOutlet UIWebView *webView;
In .m file
[webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"https://www.google.co.in/"]]];
webView.scalesPageToFit = YES;
Hope this will hep you to load url in UIWebView......
0 Comment(s)