タッチ移動を実行するときに、新しい画像(ポイント)までの固定距離が同じになるように画像(ポイント)を設定するにはどうすればよいですか?
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
{
UITouch *touch = [touches anyObject];
CGPoint touchLocation = [touch locationInView:touch.view];
UIImageView *imageView=[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"Crayon_Black.png"]];
imageView.center = touchLocation;
[drawImage addSubview:imageView];
}
これが理にかなっていることを願っています。学校のプロジェクトを終えるだけです。よろしくお願いします。