Код выше не работает, также есть утечка. -
Вот модифицированная версия.
UIViewController *webViewController = [[[UIViewController alloc]
init] autorelease];
UIWebView *uiWebView = [[[UIWebView alloc]
initWithFrame: CGRectMake(0,0,320,480)] autorelease];
[uiWebView loadRequest:[NSURLRequest
requestWithURL:[NSURL URLWithString:@"http://www.google.com"]]];
[webViewController.view addSubview: uiWebView];
[self.navigationController
pushViewController:webViewController animated:YES];