After searching, I found a solution for scroll disabling on UIWebview (support ios 3.2+):
for (id subview in _webview.subviews)
if ([[subview class] isSubclassOfClass: [UIScrollView class]])
((UIScrollView *)subview).scrollEnabled = NO;
Some answers say that this solution causes app rejected. Some answers don’t. So please help me to clarify this concern. I really appreciate your helps.
Thanks.
If you are going to submit your app in app store.. then the review team will test your app on the latest iOS available. So if your app don’t work on the latest iOS (5.1) then you app will be rejected.