使用場景妓局,我們公司需要做一個類似房多多點擊地圖 -- 查看周邊配套的效果,測試后高德好像屏蔽了該手勢,所以實現(xiàn)下面代理方法去實現(xiàn)
UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapDidClick)];
tap.delegate = self;
[self.mapView addGestureRecognizer:tap];
//ios開發(fā)中,默認(rèn)是在同一時間只能有一個手勢被執(zhí)行拴鸵,要實現(xiàn)多個手勢同時進(jìn)行,須實現(xiàn)
- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer {
return YES;
}
- (void)tapDidClick
{
NSLog(@"tapDidClick");
}