私は問題があります...
メインビューの下の単一ビューでUITouchの位置を取得したいと思います。
私のコードは次のとおりです。
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
CGPoint previous = [[touches anyObject] previousLocationInView:toolBarView];
CGPoint current = [[touches anyObject] locationInView:toolBarView];
}
問題は、toolbarViewではなく任意のビューの位置を返すことです。
どうしたの?