gpt4 book ai didi

ios - iOS 中安装了 URL Scheme

转载 作者:行者123 更新时间:2023-11-28 18:12:26 24 4
gpt4 key购买 nike

我正在我的应用程序中集成 Google map URL 方案:

[[UIApplication sharedApplication] canOpenURL:
[NSURL URLWithString:@"comgooglemaps://"]];

我很好奇是否有一些代码可以检测是否未安装 Google map 并重定向到 App Store URL。感谢您的帮助。

最佳答案

如果返回 true,则表示已安装 Google Map 应用。

if (![[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"comgooglemaps://"]])
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"https://itunes.apple.com/en/app/google-maps/id585027354?mt=8"]];
else
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"comgooglemaps://"]];

关于ios - iOS 中安装了 URL Scheme,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14617799/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com