0

私は問題があります...

メインビューの下の単一ビューでUITouchの位置を取得したいと思います。

私のコードは次のとおりです。

- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
    CGPoint previous = [[touches anyObject] previousLocationInView:toolBarView];
    CGPoint current = [[touches anyObject] locationInView:toolBarView];
}

問題は、toolbarViewではなく任意のビューの位置を返すことです。

どうしたの?

4

1 に答える 1

0

Uは訂正したいかもしれません

CGPoint current = [[touches anyObject] locationInView:toolBarView];

に:

CGPoint current = [[touches anyObject] locationInView:[toolBarView view]];
于 2012-06-07T12:34:36.667 に答える