如何获取 UIScrollView 的触摸事件。我有一个 UIViewController,我在 viewController 中放置了一个 scrollView。我需要将 imageViews 添加到 scrollView,如果单击特定图像,它应该重定向到其相应的 viewController。我知道如何将触摸事件添加到 UIViewController。但这不适用于滚动视图。
-(void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
{
UITouch *touch= [touches anyObject];
if ([touch view] == img1)
{
ViewController2 *viewController2=[[ViewController2 alloc]initWithNibName:@"ViewController2" bundle:nil];
[self presentViewController: viewController2 animated:YES completion:nil];
}
}
如何获得滚动视图的触摸事件?