gpt4 book ai didi

ios - 将平移手势传递给 MKMapView

转载 作者:可可西里 更新时间:2023-11-01 06:00:49 25 4
gpt4 key购买 nike

编辑:会让我更清楚我想要达到的目标。

我在 MKMapView 上有一些注释,我想让它们易于拖动。 Apple 移动注释的标准方法是点击一次,然后快速点击并按住并拖动。该应用程序的用户提示说这样做太难了。

所以从技术上讲,我想做的是使用平移手势。问题在于 MKMapView 还使用平移手势来移动 map 。

我想做的是,当使用平移手势时,检查平移手势是否真的开始接近注释,如果是这样,则让平移手势处理程序移动注释。我有这部分工作。

但如果平移手势没有靠近注释,则将手势传递给 MKMapView 以供其处理。

//编辑结束

我有一个方法来处理平移手势。当 MKMapView 上有一个平移手势时,这会像我预期的那样被调用。有时我不想在我的方法中处理手势,而是将手势传递给 MKMapView 以像往常一样平移/拖动 map 。

这是我目前所了解内容的概要。平移手势由以下方法处理:

-(void)panGesture:(UIPanGestureRecognizer*)sender

根据某些逻辑,我想将此手势传递给 MKMapView (self.mapView)。任何人都可以分享代码来做到这一点吗?

我尝试了 [self.mapView gestureRecognizerShouldBegin:sender]; 但此调用没有任何反应。

- (void) addPanGesture
{
self.panGesture = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(panGesture:)];
self.panGesture.delegate = self;
[self.panGesture setMinimumNumberOfTouches:1];
[self.panGesture setMaximumNumberOfTouches:1];
[self.mapView addGestureRecognizer:self.panGesture];

}

- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer
{
return YES;
}

- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldBeRequiredToFailByGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer
{
BOOL result = NO;
if ((gestureRecognizer == self.panGesture) && [[otherGestureRecognizer view] isDescendantOfView:[gestureRecognizer view]])
{
result = YES;
}
return result;
}

-(void)panGesture:(UIPanGestureRecognizer*)sender
{
//some logic to see if we will handle the gesture in this method or pass gesture on to the MKMapView

return;
}

最佳答案

The standard Apple way to move the annotations is to tap once then quickly tap and hold and drag. The users of the app have complained that it is too difficult to do this.

我不这么认为.. :(

我要写下我的逻辑,实际上即使苹果提供默认的拖放功能,使用平移手势也是不好的。顺便说一句,如果您按照问题中提到的方式进行操作,那么您必须需要为 map 上显示的每个注释添加单独的平移手势。添加它自己的标签并为所有手势方法保留相同的名称,这样您就可以轻松地通过标签管理它。所以当最终用户点击/触摸任何注释时,它的方法将被调用,你可以通过它自己的标签来触摸/点击注释。仅为拖放注释编写代码。不确定,但可能会解决您的问题。

关于ios - 将平移手势传递给 MKMapView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46622871/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com