Skip to content

Instantly share code, notes, and snippets.

@ziyang0621
Created July 13, 2015 17:34
Show Gist options
  • Save ziyang0621/3fd49e78fd7287977441 to your computer and use it in GitHub Desktop.
Save ziyang0621/3fd49e78fd7287977441 to your computer and use it in GitHub Desktop.
- (void)test {
if ([[UIApplication sharedApplication] canOpenURL: [NSURL URLWithString: @"comgooglemaps-x-callback://"]]) {
[[UIApplication sharedApplication] openURL:[NSURL URLWithString: [NSString stringWithFormat:@"comgooglemaps-x-callback://?saddr=%@,%@&daddr=%@,%@&", @"18.9750", @"72.8258", @"23.0300",@"72.5800"]]];
} else {
[[UIApplication sharedApplication] openURL:[NSURL URLWithString: [NSString stringWithFormat:@"http://maps.google.com/maps?saddr=%@,%@&daddr=%@,%@", @"18.9750", @"72.8258", @"23.0300",@"72.5800"]]];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment