UIScrollView

Comments

Sandeep Kodan said…
TO Disable the scrolling of UIWebView.


for (id subview in self._webView.subviews)
if ([[subview class] isSubclassOfClass: [UIScrollView class]])
((UIScrollView *)subview).scrollEnabled = NO;