我有一个uitableview,它将uiview加载到它的单元格中。这些UIVIEW使用了Tou-TousSead:WieToe:ETC方法,这些方法都很好,让我实现代码来在表中移动这些子视图。这一切都有效,直到我垂直移动手指并开始滚动表格,然后uiviews停止接收任何触摸事件。如果有人知道怎么避开这个我会很高兴的!非常感谢。

最佳答案

-(void)ViewDidLoad
{
    UITapGestureRecognizer *tapped = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapped)];
    tapped.numberOfTapsRequired = 2;
    [self.view addGestureRecognizer:tapped];
    [tapped release];
}

-(void)tapped
{
    NSLog(@"TAPPED");
}

10-08 03:18