This question has been asked many times before. Please have a look at this page, it's almost exactly what you need, just change the [BrowserViewController openBrowserWithUrl:url];
to whatever you need to push your new ViewController to the navigation stack. It might look like that:
LatestView *latestView = [[LatestView alloc] initWithNibName:@"LatestView" bundle:nil];
//Pass the URL here, depends on how you passed it into the WebView in the first place
// Add the ViewController to the stack
[self.navigationController pushViewController:latestView animated:YES];
[latestView release];
Phlibbo
2010-09-28 17:04:25