In my application i have added a google maps on my view.
I want to know the touch point on the mapView / myView,
where did i taped
So that i implemented logic as follows.
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
CGPoint touchPoint = [[touches anyObject] locationInView:mapView_];
CGPoint touchPoint2 = [[touches anyObject] locationInView:self.view];
NSLog(@"========== %@", NSStringFromCGPoint(touchPoint));
NSLog(@"========== %@", NSStringFromCGPoint(touchPoint2));
//UITouch *touch = [[event allTouches] anyObject];
//CGPoint touchPoint = [touch locationInView:touch.view];
}
But it works only for the first touch, from the next touch event this method doesn't calls.
I didn't get what was the problem is
You can't get the touch loctaion on a map,when we touch it ,it becomes zoom,the touch events is on the UIView