Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a UIView demoView in a UIScrollView. I want to scroll the UIScroll view vertically and don't scroll horizontally. I add UISwipeGestureRecognizer to the UIView. The code is (self here is the UIScrollView):

self.demoView.userInteractionEnabled = YES;
UISwipeGestureRecognizer *rightSwipe = [[UISwipeGestureRecognizer alloc] 
    initWithTarget:self action:@selector(rightSwipeLineChart:)];
rightSwipe.direction = UISwipeGestureRecognizerDirectionRight;
[self.demoView addGestureRecognizer:rightSwipe];

UISwipeGestureRecognizer *leftSwipe = [[UISwipeGestureRecognizer alloc] 
    initWithTarget:self action:@selector(leftSwipeLineChart:)];
[self.demoView addGestureRecognizer:leftSwipe];

The result is I can only detect the left swipe gesture, can't detect right swipe gesture. What's wrong with my code? Thank you.

share|improve this question
Maybe self here is the view controller? – Mundi Sep 4 '12 at 13:18
self here is a UIScrollView's subclass. I use a .xib file. this subclass is bundled with the .xib. – Vigor Sep 4 '12 at 13:21
Why are do add swipe recognizers at all? If you don't want your scroll view to scroll horizontally you should specify contentSize with 0 width (or less then viewport width). – Pavel fljōt Sep 4 '12 at 13:31

3 Answers

@property(nonatomic) UISwipeGestureRecognizerDirection direction

instead of using two UISwipeGestureRecognizers, you can just do the following:

UISwipeGestureRecognizer *swipeGesture = [[UISwipeGestureRecognizer alloc]
                                  initWithTarget:self action:@selector(handleSwipeGesture:)];

  swipeGesture.direction = UISwipeGestureRecognizerDirectionRight | UISwipeGestureRecognizerDirectionLeft;

And in your action method:

 -(IBAction)handleSwipeGesture:(UISwipeGestureRecognizer*)sender
 {
   if (sender.direction == UISwipeGestureRecognizerDirectionLeft) {

      //do left action

      } else {

     //do right action

   }
}
share|improve this answer

To detect a swipe into a UIScrollView or a UIWebView is hard. You can use "Swipe4ScrollViews" from here: UISwipeGestureRecognizer not working

share|improve this answer

Why don't you just add a UISwipeGestureRecognizer without specifying the direction? You could then determine the direction in your handler like this:

if (sender.direction==UISwipeGestureRecognizerDirectionRight)

etc.

Also, I noticed that in you code you did not specify the direction of your leftSwipe.

share|improve this answer
Who downvoted this? At least make a comment and explain why. – Mundi Sep 4 '12 at 13:24
Well give me a minute, ok?) – Pavel fljōt Sep 4 '12 at 13:24
It's the same with what I have done above. It still can't detect right swipe. I think the problem is the UIScrollView. I can use this in other situation. – Vigor Sep 4 '12 at 13:26
Well, did you try it? You seem to have two separate routines leftSwipeLineChart and rightSwipeLineChart. Instead you should have swipeLineChart and do the distinction in that method. – Mundi Sep 4 '12 at 13:28
Here @Mundi, I found it stackoverflow.com/questions/3319209/… – Pavel fljōt Sep 4 '12 at 13:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.