我从 调用该calculateDirectionsWithCompletionHandler
方法MKDirections
,但从不调用完成处理程序。甚至没有错误。而且由于请求是在主线程中发出的,因此整个应用程序都会卡住。我确保directionRequest 具有源和目标,并且两个位置都不为零。有人有过同样的经历吗?
[directions calculateDirectionsWithCompletionHandler:^(MKDirectionsResponse * _Nullable response, NSError * _Nullable error) {
if (error) {
NSLog(@"%@", error);
}else{
// Deal with the response
}
}];