如何在iOS中使用Pan Gesture Recognizer在视图之间切换?

时间:2013-01-10 06:35:33

标签: ios uipangesturerecognizer

我有两个视图,我想在正确的方向上使用Pan Gesture(就像Facebook ios应用程序中使用的手势)切换到第二个视图。一旦我们开始使用Pan手势,视图应该开始改变。我如何执行此操作?有没有人有一个执行此操作的示例代码?

1 个答案:

答案 0 :(得分:0)

有一个带有示例项目的git,您可以通过它参考Facebook iOS应用程序中的侧边菜单效果。

https://github.com/BenHall/ios_facebook_style_navigation

修改

好的,然后尝试这样的事情:

   UISwipeGestureRecognizer *swipeLeft = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(scrollViewSwipedLeft:)];
   [swipeLeft setDirection:UISwipeGestureRecognizerDirectionLeft];
   [self.navigationController.navigationBar addGestureRecognizer:swipeLeft];

然后用这样的东西处理滑动:

-(void) didSwipedLeft: (UISwipeGestureRecognizer *) gesture {

  if (gesture.state != UIGestureRecognizerStateEnded) {
      return;
  }

  //do something    
}