I have "googled" this question a few times today with no luck. I would like to know if it is possible to create an annotation in Mapview from an address rather than using the lat/Long method. My current code is below.
//1. Create a coordinate for use with the annotation
CLLocationCoordinate2D Sharon;
Sharon.latitude = 38.952223;
Sharon.longitude = -77.193646;
Annotation *myAnnotation = [Annotation alloc];
myAnnotation.coordinate = Sharon;
myAnnotation.title = @"Sharon Lodge #327";
myAnnotation.subtitle = @"McLean, VA";
Try like this,
for annotation title and subtitle,
You can get lat long from an address using google api or CLGeocoder
google api
Link 1 Link 2
CLGeocoder