スクロールビュー内にボタンがあり、スクロールに関係なくボタンの任意の部分をクリックするたびに、x、y 位置 (画像のピンクのドットとしてマーク) を見つけて変数に割り当てたいと考えています。以下のコードは、スクロールに関係なくタッチ位置を示します。同様に、スクロールに関係なく画像内のピンクのスポットの位置を取得する一般化されたコードはありますか?
NSSet *touches = [event touchesForView:sender];
UITouch *touch = [touches anyObject];
CGPoint location = [touch locationInView:self.view];
CGPoint locationX = [touch locationInView:sender];
NSLog(@"Location: %f, %f", location.x, location.y);