我正在尝试通过执行以下操作在我的应用程序中启动 Google Maps iOS 应用程序:
- (void)viewDidLoad
{
[super viewDidLoad];
self.title = @"Google Map";
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:
@"comgooglemaps://?center=40.765819,-73.975866&zoom=14&views=traffic"]];
}
但是,该应用程序根本不会启动 Google Maps iOS。我确实安装了 Google Maps iOS。
我在这里错过了什么?
有人可以帮帮我吗?
谢谢。