2010-11-29 5 views

Antwort

0

Sie können unten verwenden: -

NSString* yourFullAddress = @"address,city, state province code and postal code"; 

    yourFullAddress = [yourFullAddress stringByAddingPercentEscapesUsingEncoding: NSUTF8StringEncoding]; 

    // Now create the URL string ... 
    NSString* urlString = [NSString stringWithFormat:@"http://maps.google.com/maps?q=%@", yourFullAddress]; 

    // An the final magic ... openURL! 
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:urlString]]; 

oder im Falle u dont Google Maps öffnen möchten, und lieber die Koordinaten festgelegt auf ur MKMapView ... u kann GeoCode Ihre Adresse, um die Koordinaten zu erhalten und schließlich den Koordinatenbereich auf MKMapview ..

setzen