我在iOS中使用MKMap制作了一些路由应用程序。
我的代码如下:
...
MKDirections *directions = [[MKDirections alloc] initWithRequest:request];
[directions calculateDirectionsWithCompletionHandler:
^(MKDirectionsResponse *response, NSError *error) {
....
我可以从响应中获取MKRoute对象数组。
但我发现,如果iOS设备进入下一步,则没有回复api。
如果驱动程序达到第一步,我需要自动显示下一步。
(我尝试使用CLLocationManager进行距离过滤,但我认为它对iOS设备来说效果不佳)
有没有什么好方法可以获得通知我到达附近的任何MKRoute?