我想创建一个包含 UIWebview 的 ios 应用程序。我看到很多教程都说如何在启动应用程序时加载 webview。但我想要的是当用户点击一个视图中的链接时,网页应该在单独的视图中加载。这是我的按钮单击事件中的代码。
`
-(IBAction)visitWeb:(id)sender{
web *wb=[[web alloc]initWithNibName:nil bundle:nil];
[self presentModalViewController:wb animated:YES];
[wb release];}
这是在网络
`
- (void)viewDidLoad {
NSString *urlAddress = @"http://www.google.com";
//Create a URL object.
NSURL *url = [NSURL URLWithString:urlAddress];
//URL Requst Object
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
//Load the request in the UIWebView.
[webView loadRequest:requestObj];
[super viewDidLoad]; }
但它不显示任何东西。只是显示空UIWebView
的它的原因是什么。请用代码给我一个解决方案。
谢谢,