webView是否启用滚动(scrollEnabled 为 NO)

self.myWebView.multipleTouchEnabled = YES;
self.myWebView.scrollView.scrollEnabled = NO;
//for ios version below 5.0
for (UIView * sub in self.myWebView.subviews) {
    if ([sub isKindOfClass:[UIScrollView class]]) {
        [(UIScrollView *)sub setScrollEnabled:NO];
    }
}
这段代码是为了兼容5.0以前版本的
for (UIView * sub in self.myWebView.subviews) {
    if ([sub isKindOfClass:[UIScrollView class]]) {
        [(UIScrollView *)sub setScrollEnabled:NO];
    }
}


你可能感兴趣的:(webView是否启用滚动(scrollEnabled 为 NO))