Posts Tagged ‘ipad’
iOS Disable Scrolling in Webpage [UIWebView]

For the application mentioned in the last blog post [iPad disable zooming], we also had to disable scrolling at certain points very briefly and re-enable it. [dont ask ] This was done by going to the UIScrollView subviews and disabling bouncing and the indicators.
|
1 2 3 4 5 6 7 |
for (id subview in self.myWebView.subviews) {
if ([[subview class] isSubclassOfClass: [UIScrollView class]]) {
((UIScrollView *)subview).bounces = NO;
((UIScrollView *)subview).showsVerticalScrollIndicator = NO;
((UIScrollView *)subview).showsHorizontalScrollIndicator = NO;
}
} |


