0
我有這樣的代碼誰得到它正在通過的WebView打開的網址:的WebView shouldStartLoadWithRequest,只得到主URL
-(BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType{
NSlog(@"My Url -> %@",request.URL);
}
該代碼發送我的完整URL,例如:
在我來說,我只是想嘗試在該網頁的主要URL,返回:
www.google.com
我怎麼能這樣做?