tags:

views:

46

answers:

1

so user touches link in uiwebview, the page opens.. how do I get the new url so I can show it in a uilabel? thanks.

+2  A: 

Implement webView:shouldStartLoadWithRequest:navigationType: in your UIWebViewDelegate. In there you can get the [request.URL absoluteString] to show in your UILabel.

cduhn