-(void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event

{

UITouch *touch = [touches anyObject];

CGPoint point = [touch locationInView:self.view];

NSLog(@"kkk %f , %f",point.x,point.y);

}

05-11 17:57