I already tried getting the current url of my UIWebView with: webview.request.URL. Unfortunately the NSURL was empty. Anything wrong here? I'am working with Xcode 3.2.2 beta 5.

The code above should be executed in the UIWebViews delegate didStartLoad...

Thanks a lot!

link|improve this question

feedback

6 Answers

up vote 3 down vote accepted

You could try this:

NSString *currentURL = [webView stringByEvaluatingJavaScriptFromString:@"window.location"];
link|improve this answer
Thanks. My code above works when executing in didFinishLoad.... Somewhere I've read that the js version doesn't work on every page. But I'll try. – rdesign Mar 23 '10 at 11:12
It did not work for me, but the code of Matt Andersen yes. – Felipe Micaroni Lalli Apr 23 at 22:53
Matt his version is much cleaner. So yeah I recommend everyone to use that one instead of this. – Rengers Apr 24 at 9:24
feedback

window.location via JS didn't work reliably for me, but this did:

currentURL = currentWebView.request.URL.absoluteString;

Credit: http://mohrt.blogspot.com/2008/10/getting-url-from-uiwebview.html

link|improve this answer
1  
Much cleaner method. – geerlingguy Feb 22 '11 at 18:51
You will get incorrect url if you site will load some ads in other request. More clear variant wrote by Mark Sands – OdNairy Jan 18 at 7:40
It works like a charm. – Felipe Micaroni Lalli Apr 23 at 22:53
feedback

here's the code I use to grab the url every time you navigate to a different link within the webview:

- (void)webViewDidFinishLoad:(UIWebView *)aWebView
{
  self.url = aWebView.request.mainDocumentURL;
}
link|improve this answer
when I try this, the method is never called. Is there something I could be missing? – Greg Jan 25 at 1:50
@greg make sure you set yourself as the UIWebView's delegate – bendytree Mar 3 at 6:41
this worked for me while webView.request.URL.absoluteString returned nil – bendytree Mar 3 at 6:47
feedback

I too found that the approved answer above was not reliable. But with a slight modification, it seems to work every time:

NSString *currentURL = [webView stringByEvaluatingJavaScriptFromString:@"window.location.href"];

Note the addition of ".href" to the Javascript as this is hidden at the end of the line of code.

link|improve this answer
after trying every above solution, this is the only one that worked for me – CHawk Apr 28 at 2:05
feedback

here the code i use :

        [[UIApplication sharedApplication] openURL:[NSURL URLWithString:[[[webView request] URL] absoluteString]]];
link|improve this answer
1  
You are creating an NSURL by getting the string from an existing NSURL; couldn't you just copy webView.request.URL? – Pascal Dec 5 '11 at 16:34
feedback

Tried this for google search results on iPhone:

 NSString* currentURL = webView.request.URL.absoluteString;
 NSString* mainDocumentURL = webView.request.mainDocumentURL.absoluteString;

Both return the same string!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.