I currently have a view with four buttons, and would like to be able to launch UIWebview with a specific url for each different button.
I currently am able to launch saf
somtheing like this should be called in the IBAction for the buttom click. you can specify a different URL based on the sender
UIWebView *webView = [[UIWebView alloc] initWithFrame: CGRectMake(0.0, 0.0, 1.0, 1.0)];
webView.delegate = self;
NSURLRequest *request = [[NSURLRequest alloc] initWithURL: [NSURL URLWithString: @"www.url.com"] cachePolicy: NSURLRequestUseProtocolCachePolicy timeoutInterval: myTimeoutValue];
[self.webView loadRequest: request];