天天看點

高德地圖添加點選手勢不響應

UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapDidClick)];
tap.delegate = self;
[self.mapView addGestureRecognizer:tap];
//ios開發中,預設是在同一時間隻能有一個手勢被執行,要實作多個手勢同時進行,須實作
- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer {
    return YES;
}

- (void)tapDidClick
{
    NSLog(@"tapDidClick");
}
           
高德地圖添加點選事件的時候,要避免手勢沖突  要設定點選代理
           

繼續閱讀