Xcode How to Create a Webview for iOS Applications HD
This tutorial will show you how to create a webview for iOS applications. View Controller.h { IBOutlet UIWebView *myWebView; } View Controller.m NSURL *myURL = [NSURL URLWithString:@"http://YOURSITEHERE"]; NSURLRequest *myRequest = [NSURLRequest requestWithURL:myURL]; myWebView.scalesPageToFit = YES; [myWebView loadRequest:myRequest];