I\'d like to use routing from my app, so that TomTom or Navigon get opened with right \"from\" and \"to\" addresses. Does anybody know if TomTom or Navigon apps register a URL H
For Navigon, this works in my app Taskly
NSString *urlString = [NSString stringWithFormat:@"navigon://YourAppName|%@||||||%f|%f",destinationName,destination.longitude,destination.latitude];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:[urlString stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]]];