私はiPhoneの初心者で、タッチイベントに取り組んでいます。私はこのコードを入れましたが、そのタッチは画像ビューでは実行されません。また、imageViewでスクロールビューを使用しているため、タッチイベントが適用されません。
私のコードは
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
{
// get touch event
UITouch *touch = [[event allTouches] anyObject];
CGPoint touchLocation = [touch locationInView:self.view];
if ([touch view] == imagedisplay) {
// move the image view
imagedisplay.center = touchLocation;
}
}
ただし、タッチイベントを実行しないで、ソースコードに提案をしてください