問題は、ドラッグ アンド ドロップの iPad ゲームを作成していることです。そのように私のビューを移動します
-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event{
CGPoint pt = [[touches anyObject] locationInView:self.superview];
self.center = CGPointMake(pt.x - _xOffset, pt.y - _yOffset);
}
しかし、ある瞬間、ビューのドラッグをやめて、ある場所に配置したいと思います。私はそれを行う方法にこだわっています。