Get current URL of UIWebView

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

Leave a Comment