CGPoint,
recognizer.view.center = CGPoint(x,y);
( pangesturerecognizer , )
:)
1
. , () , multipal touch . (. )

,
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
NSLog(@"Began %@",touches);
NSUInteger touchCount = 0;
for(UITouch *tu in touches)
{
CGPoint pt = [tu locationInView:self.view];
NSLog(@"pt %f, %f",pt.x,pt.y);
touchCount ++;
}
NSLog(@"touchCount %d",touchCount);
}
NSLog. self.view , .
, , ,
p3.x = (p1.x + p2.x)/2;
p3.y = (p1.y + p2.y)/2;
p1, p2 - , , p3 - , .
:)