Quote:
Originally Posted by lepetitapps
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 
|
Thank you - but how do I check that the button is pressed? (I am very new to Objective-C)