
In the options you provided… // Get Routing Result self.routeSolveWebServiceCall() OR / / Get Routing Result DispatchQueue.global().async { [weak self] in self?.routeSolveWebServiceCall() } …you do not need to dispatch the self?.routeSolveWebServicesCall() to DispatchQueue.global(). But I…