親ビューでビューを移動したいビューを移動するのにUIPanGestureRecognizerを使用しています。私は以下のコードを使用しています。Pangestureを使用して親ビュー内のUIViewを移動
-(void)move:(UIPanGestureRecognizer *)recognizer {
CGPoint touchLocation = [recognizer locationInView:self.customeView];
self.view.center = touchLocation;
}
translInInViewではなくviewを移動するためにlocationInViewを使用します。誰かがlocationInViewを使って親ビューでビューを移動する方法を教えてもらえますか?
を試すことができますか?それとも、動かすのか? –
translationInViewを使用しているので、私はlocationInViewを使用しています。 – Uttam