Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Simply enough, I need to know how to obtain the current URL that the UIWebView is in. That way, I would be able to add such features as bookmarking, sharing, etc.

The crux of the question is, what can I do to obtain the current URL of the webvew?

EDIT: Solution:

NSString *currentURL = myWebView.request.URL.absoluteString;
share|improve this question

2 Answers

up vote 12 down vote accepted
NSString *currentURL = myWebView.request.URL.absoluteString;
share|improve this answer
Thanks. Exactly what I needed. – JTApps Jan 16 '12 at 4:21
+1 please. Thanks! – Shivan Raptor Jan 16 '12 at 5:20
[[[web request] URL] absoluteString]

Will give you the current url as a String.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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