Thursday, February 17, 2011

UIWebView disable scrolling

1. objc
UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectMake(0,0,320,480)];
[[[webView subviews] lastObject] setScrollEnabled:NO];

2. javascript
document.onload = function(){
    document.ontouchmove = function(e){ e.preventDefault(); }
};

No comments:

Post a Comment