WebView shouldStartLoadWithRequest,只获取主url

时间:2014-07-26 14:37:47

标签: objective-c webview uiwebview

我有这个代码获取WebView打开的URL:

-(BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType{

NSlog(@"My Url -> %@",request.URL);

}

此代码向我发送完整的URL,例如:

  

https://www.google.com/?gws_rd=ssl

在我的情况下,我只是想尝试获取此页面的主要网址,返回:

  

www.google.com

我怎么能这样做?

1 个答案:

答案 0 :(得分:3)