. :
, , FRA , navigonFRA.
NSString* scheme = @"navigonFRA";
if ((![NavigonApplication isFRInstalled]) && [NavigonApplication isWorldInstalled])
scheme = @"navigon";
NSString* urlAsString = nil;
urlAsString = [NSString stringWithFormat:@"%@://%@|%@|%@|%@|%@|%@|%@|%f|%f",
scheme,
@"myApp",
thePOI.name,
@"FRA",
@"",
thePOI.location.city,
thePOI.location.streetAddress,
@"",
thePOI.location.longitude,
thePOI.location.latitude];
urlAsString = [urlAsString stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
NSLog(@"Starting Navigon app with %@", urlAsString);
NSURL*url = [[NSURL alloc] initWithString:urlAsString];
[[UIApplication sharedApplication ]openURL:url];
[url release];
. , navigon >= v1.5?