如何在iphone中的UIWebView中打开链接

时间:2011-07-13 11:41:18

标签: iphone uiwebview

我想在我的应用程序中打开一个链接,我不想关闭我的应用程序。我在应用程序顶部有导航栏,在我要打开我的Web视图的导航下方。我确定了我的出路。

 IBOutlet  UIWebView *displaySingleData;

如何在我的应用程序中打开链接。

提前致谢

2 个答案:

答案 0 :(得分:2)

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];

答案 1 :(得分:1)

jst写下面的代码:

[displaySingleData loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.google.com"]]];

快乐编码..