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.

I'm creating an app which has a text field & go button on top and web view below them. When user enters URL in text field and clicks "Go" button, it will start loading the page in webview. When user clicks on some link, i want to show the URL of the page (being loaded) in the text field. How can I get that URL of the link clicked.

Also some websites are there which will redirect to some other site. So my question is how to show the URL of the page being loaded in the text field?

share|improve this question

2 Answers

up vote 23 down vote accepted

Implement this in your UIWebViewDelegate class

- (BOOL)webView:(UIWebView*)webView shouldStartLoadWithRequest:(NSURLRequest*)request navigationType:(UIWebViewNavigationType)navigationType {
    //CAPTURE USER LINK-CLICK.
      NSURL *url = [request URL];
      yourTextBox.text =   [url absoluteString];


      return YES;   
}
share|improve this answer
1  
This doesnot work when i load youtube in webview... Anything i miss. Please help. – Warrior Sep 15 '12 at 3:05

There's a delegate method for that purpose, implement it like this:

- (void)webViewDidStartLoad:(UIWebView *)webView {
    NSURL* url = [webView.request URL];
    urlTextField.text = [url absoluteString];
}
share|improve this answer
This is working fine. But a problem noticed. That is I entered yahoo.com and its loading fine. but textfield is being cleared. when i click some links in yahoo page, then onwards its showing the URL properly. – Satyam svv Jan 13 '11 at 13:31

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.