I know this a bit later, but I found a solution:
This answer to this question prohibits scrolling of UIScrollView in UIWebView: Is scrolling allowed in UIWebView?
I added this code to the viewDidLoad function of MainViewController.m
for (UIView *view in webview.subviews) { if ([view isKindOfClass:[UIScrollView class]]) { UIScrollView *scrollView = (UIScrollView *)view; scrollView.scrollEnabled = NO; } }
The following problem does not allow iScroll to handle events in TextArea, for this you need to get the debug version of iscroll so that you can change the code (3rd line):
handleEvent: function (e) { var that = this; if(e.srcElement.tagName == "TEXTAREA") return;
nor do you prevent Default for your text field using similar ifs.
This combination worked for me.
The -webkit and overflow css tags just make it more enjoyable.
Uh, but on ios 4, scrolling is done with two fingers, not one.
source share