I have an UIWebview
where i'm loading multiple URL's using SwipeGesture i'm swiping to next page. I have used this code to do this,
UISwipeGestureRecognizer* swipeUpGestureRecognizer = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(handleSwipeUpFrom:)];
swipeUpGestureRecognizer.direction = UISwipeGestureRecognizerDirectionUp;
in handleSwipeUpFrom
method i'm loading next URL in my webview
.
Everything works PERFECTLY. But the swipe is works so fastly. I want to make some delay to it, any ideas....