tags:

views:

260

answers:

1

I created number of UIWebviews and add it to my view. And gave load request. I want to stop loading the uiwebview with tag=10. How can this implement?

+2  A: 

try something like this:

UIWebView *webView = [self.view viewWithTag:10];
if(webView)
{
[webView stopLoading];
}
SorinA.