how to change url of uiwebview when button is clicked?

5.1k Views Asked by At

hi i guess this is pretty simple and hope it will be answered in a easy manner!

how do i change the url of the uiwebview when a button is touched up inside?

meaning to say i will have a single web view and everytime a button is clicked the URL of the webview

changes and a new page is reloaded

thanks

1

There are 1 best solutions below

2
On

As you suggest, it's very easy:

-(void)buttonPressed:(id)sender {
  [webview loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://website.com/"]]];
}

This is all very well documented.