Merge pull request #74 from deathbaba/dkfixes

[iOS] increase uiwebview scrolling speed
This commit is contained in:
Rahuba 2013-10-17 00:59:10 -07:00
commit 32b5cc3a77

View file

@ -23,6 +23,7 @@
if (self)
{
_webView = [[UIWebView alloc] init];
self.webView.scrollView.decelerationRate = UIScrollViewDecelerationRateNormal;
[self.webView setFrame:self.view.frame];
UIPanGestureRecognizer * pinch = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(onPinch:)];
pinch.delegate = self;