I know you can use a javascript to do this
<script type="text/javascript">
touchMove = function(event) {
event.preventDefault();
}
Is there a way to do the same using objective-c?
I know you can use a javascript to do this
<script type="text/javascript">
touchMove = function(event) {
event.preventDefault();
}
Is there a way to do the same using objective-c?
try this...
UIView * v = [[webView subviews] lastObject];
[v setScrollEnabled:NO];
[v bounces:NO];
EDIT: Added checks to original answer based on comment below
UIView * v = [[webView subviews] lastObject];
if([v isKindOfClass:[UIScrollView class] ]) {
if ([v respondsToSelector:@selector(setScrollEnabled]) {
[v setScrollEnabled:NO];
}
if ([v respondsToSelector:@selector(bounces)]) {
[v bounces:NO];
}
}