I have UIView i set it’s Alpha to Zero to animate it to be hidden, and i bring a new view which is UIWebView when i try to scroll the content of the UIWebView the hidden UIView is preventing the UIWebView to scroll, Is there anyway to bring the UIWebView to front with out letting the Behind view preventing the scroll process?
Code: after “Oleg Danu” Answer
[self.ParentView.view sendSubviewToBack:self.ParentView.UITableView];
[self.ParentView.view bringSubviewToFront:self.WebView];
I am still unable to scroll the UIWebView Contents.
If I understand both of your views are subviews of some any other view. In this case try next:
or