我已经创建了可拖动的 pin 注释,它工作得非常好,问题是我不想在特定按钮单击时拖放 pin,甚至不想重新加载 map ,因为我在上面有覆盖,我使用了 DDAnnotation 类作为可拖动引脚
DDAnnotation *annotation = [[DDAnnotation alloc] initWithCoordinate:theCoordinate addressDictionary:nil];
annotation.title = @"Testing";
annotation.subtitle = @"Drag and Drop Pin";
[self.detailMapView addAnnotation:annotation];
谢谢
任何帮助都会非常感激!
Best Answer-推荐答案 strong>
请设置[注解setDraggable:NO];
关于ios - 创建可拖动的引脚注释,但应阻止其拖动按钮,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/21623893/
|