UITouch events calls / works only once. not works second time,

162 Views Asked by At

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

2

There are 2 best solutions below

1
On

You can't get the touch loctaion on a map,when we touch it ,it becomes zoom,the touch events is on the UIView

0
On

with the help of this i get a log at everytime i touch on mapview with exact touch points

-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
    CGPoint touchPoint  = [[touches anyObject] locationInView:self.viewMap];
    NSLog(@"==========1 %@", NSStringFromCGPoint(touchPoint));
}