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;
1 Answer