こんにちは 。UIImageView
オブジェクトを移動しようとしUITouch
ていますが、コードに問題があります。UIImageView オブジェクトのみを検出するために UITouch を実装するにはどうすればよいですか?
**imageA それは私の UIImageView
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
UITouch *toucheA = [[event allTouches] anyObject];
if ([toucheA view] == imageA) {
CGPoint location = [toucheA locationInView:self];
imageA.center = location;
}
}
- (void) touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
[self touchesBegan:touches withEvent:event];
CGPoint postion = imageA.center;
imageA.center = postion;
postion.y = 230;
imageA.center = postion;
}
しかし、動作しません!