I already tried getting the current URL of my UIWebView with: webview.request.URL. Unfortunately the NSURL was empty. Anything wrong h
UIWebView
webview.request.URL
NSURL
implement delegate method,
- (BOOL)webView:(UIWebView *)webview shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType { NSString *URL = request.URL.absoluteString; NSLog(@"%@",URL); }
URL is the what you exactly needed.