views:

39

answers:

1

Hi,

When i click a link in the uiwebview is that possible to load a uiview ? Is there a way to transfer control from uiwebview to uiview.

+2  A: 

Implement the webView:shouldStartLoadWithRequest:navigationType: method of the UIWebViewDelegate protocol.

Can Berk Güder
I dont get it completely. How will i control on click of a link on the webview to show another uiview ?
thndrkiss
this method will be called on the UIWebView's delegate when the user "clicks" a link.
Can Berk Güder