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 loadin
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; }