화면이 위아래나 좌우로 흔들리는걸 막을때.
~delegate.m
[[webView.subviews objectAtIndex:0] setScrollEnabled:NO]; //to stop scrolling completely
[[webView.subviews objectAtIndex:0] setBounces:NO]; //to stop bouncing
------ document.onload = function(){
document.ontouchmove = function(e){ e.preventDefault(); }
};Posted by 홍반장




