如何从用户设备获取适合路由的应用列表?
How to get the list of applications suitable for routing from the user’s device?
有什么方法可以检查用户是否在 his/her 设备上安装了某个应用程序(google.maps、yandex.maps 或本机地图)以制作适合路由的应用程序列表?
您可以使用 URL 方案检查用户是否在设备(google.maps、yandex.maps 或本机地图)上安装了此应用程序。
对于 Google 个地图:
let appURL = URL(string: “comgooglemaps://”)
if UIApplication.shared.canOpenURL(appURL!) {
// code for open URL
print(“Can Open URL”)
}
有什么方法可以检查用户是否在 his/her 设备上安装了某个应用程序(google.maps、yandex.maps 或本机地图)以制作适合路由的应用程序列表?
您可以使用 URL 方案检查用户是否在设备(google.maps、yandex.maps 或本机地图)上安装了此应用程序。
对于 Google 个地图:
let appURL = URL(string: “comgooglemaps://”)
if UIApplication.shared.canOpenURL(appURL!) {
// code for open URL
print(“Can Open URL”)
}