To add a pin to the map, you need to do this:
CLLocationCoordinate2D coordinate; MKPlacemark *mPlacemark = [[[MKPlacemark alloc] initWithCoordinate:coordinate addressDictionary:nil] autorelease]; [mapView addAnnotation:mPlacemark];
And you can add any number of contacts =)
source share