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?
You can write webView stopLoading method in viewWillDisappear
viewWillDisappear
-(void)viewWillDisappear:(BOOL)animated { if([webView isLoading]) { [webView stopLoading]; } }