From 0d91eb0c95894469348e2d1a05e10fb4f8d17fe5 Mon Sep 17 00:00:00 2001 From: Soutaro Matsumoto Date: Sun, 29 Jul 2012 21:12:35 +0900 Subject: [PATCH] Swipe gestures need wait --- src/UIView+FrankGestures.m | 1 + 1 file changed, 1 insertion(+) diff --git a/src/UIView+FrankGestures.m b/src/UIView+FrankGestures.m index 77a2e3c1..61d19914 100644 --- a/src/UIView+FrankGestures.m +++ b/src/UIView+FrankGestures.m @@ -51,6 +51,7 @@ -(void)swipeInDirection:(NSString *)dir { } [self dragAlongPathWithPoints:swipePath count:NUM_POINTS_IN_SWIPE_PATH]; + [NSThread sleepForTimeInterval:0.5]; } @end