Add a button to the interface, and when that button is pressed just use:
[webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.example.com"]]];
Working from the end, backwards, this uses a string ("http://www.example.com") to create an NSURL, which is then used to create an NSURLConnection, which the webView then loads