UIScrollViewのタッチイベントを取得するにはどうすればよいですか。UIViewControllerがあり、viewControllerにscrollViewを配置しました。scrollViewにimageViewsを追加する必要があり、特定の画像がクリックされると、対応するviewControllerにリダイレクトされます。UIViewControllerにタッチイベントを追加する方法は知っていましたが、scrollViewでは機能しません。
-(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];
}
}
scrollViewのtouchsイベントを取得するにはどうすればよいですか?