これを試して。現在のコントローラーでこのコードを使用する
WebViewController *objWebViewController = [[WebViewController alloc] initWithNibName:@"WebViewController" bundle:nil];
objWebViewController.m_strHtml=[NSString stringWithString:@"www.google.com"];//m_strHtml is a NSString variable in WebViewController class
[self.navigationController pushViewController:objWebViewController animated:YES];
[objContentWebViewController release];
WebViewControllerでこれを使用します
NSURL *url = [[NSURL alloc] initWithString:m_strHtml];
NSURLRequest * req = [[NSURLRequest alloc] initWithURL:url];
[url release];
[Webview loadRequest:req];
[req release];
それ以外の場合は、Webビュー内にHTMLをロードでき、Webビューは
デフォルトとしてその中のリンクを開きます。次のコードを使用します。
m_strHtml=[[NSString alloc]initWithFormat:@"<html><body>%@</body></html>",m_strHtmlContent];//m_strHtmlContent is string variable to store the html content
[Webview loadHTMLString:m_strHtml baseURL:Nil];
Webview.backgroundColor=[UIColor clearColor];