-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
UITouch *touch = [touches anyObject];
CGPoint point = [touch locationInView:touch.view];
NSLog(@"%@",NSStringFromCGPoint(point));
}
转载于:https://my.oschina.net/SoulJa/blog/468975