私のアプリでは、オブジェクトを(以下のコードを使用してタッチから)赤い長方形内に移動したいこれを行う方法
コード:
UITouch *touch = [[event allTouches] anyObject];
CGPoint location = [touch locationInView:[touch view]];
if (insidethepaddle) {
object1.center = CGPointMake(location.x, location.y - 50);
}