2

我有一个自定义的滚动视图,实现了以下方法:

  - (void) touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
 {
     //if not dragging send it on up the chain
     if(!self.dragging){
    [self.nextResponder touchesEnded:touches withEvent:event];
     }else {
        [super touchesEnded:touches withEvent:event];

     }
  }

在我的视图控制器中,我有以下方法:

-(void) touchesEnded: (NSSet *) touches withEvent: (UIEvent *) event {


NSLog(@"TOUCH");
//---get all touches on the screen---

NSSet *allTouches = [event allTouches];



//---compare the number of touches on the screen---

switch ([allTouches count])

{

        //---single touch---

    case 1: {

        //---get info of the touch---

        UITouch *touch = [[allTouches allObjects] objectAtIndex:0];



        //---compare the touches---

        switch ([touch tapCount])

        {

                //---single tap---

            case 1: {
                NSLog(@"Single");

                [self mySingleTapMethod];
            } break;



                //---double tap---

            case 2: {

                [self myDoubleTapMethod];
            } break;

        }

    }  break;

}

}

在 iOS 4 下,这完美运行,滚动视图上的触摸被识别,并且 touchesEnded 在我的视图控制器中被调用,一切正常。然而,在 iOS 5x 下,touchesEnded 永远不会被触发。有谁知道到底发生了什么/错了?

4

1 回答 1

3

在这里找到了答案,基本上如果你想做我正在做的事情,你也需要将 touchesBegan 向上传递..因为如果 viewController 没有看到 touchesBegan 它就不会得到 TouchesEnded ......所以我修改了自定义 ScrollView 以抛出 touchesBegan,现在一切都在 5.0 中正常工作

参考:

Xcode 4.2 更改了 UIView 触摸处理行为?

于 2012-07-07T18:22:27.097 回答