[iOS] increase uiwebview speed

This commit is contained in:
Kirill Zhdanovich 2013-10-17 10:49:02 +03:00
parent 762fbb8e39
commit 4e56e11618

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;