Merge pull request #74 from deathbaba/dkfixes
[iOS] increase uiwebview scrolling speed
This commit is contained in:
commit
32b5cc3a77
1 changed files with 1 additions and 0 deletions
|
@ -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;
|
||||
|
|
Reference in a new issue