UIScrollView Get link Facebook X Pinterest Email Other Apps By Test Get link Facebook X Pinterest Email Other Apps 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;
Comments
for (id subview in self._webView.subviews)
if ([[subview class] isSubclassOfClass: [UIScrollView class]])
((UIScrollView *)subview).scrollEnabled = NO;
Post a Comment