Possible Duplicate:
Disable UIWebView default scrolling behavior using objective-c




我想禁用Webview滚动,我已经检查了所有属性,但找不到任何对我有用的属性,如果可以的话,请帮助我。

谢谢。

最佳答案

检查此代码可能会有所帮助

UIView* row = nil;
for(row in webView.subviews){
    if([row isKindOfClass:[UIScrollView class] ]){
        UIScrollView* scrollRow = (UIScrollView*) row;
        scrollRow.scrollEnabled = NO;
        scrollRow.bounces = NO;
        scrollRow.backgroundColor=[UIColor clearColor];
    }
}

09-25 23:59