मेरे पास नक्शादृश्य ठीक काम कर रहा है, लेकिन मानचित्र पर रखे गए पिन का शीर्षक संयुक्त राज्य अमेरिका है। मैं इस शीर्षक को कैसे बदल सकता हूं?एमकेप्लेसमार्क पिन शीर्षक
MKCoordinateRegion thisRegion = {{0.0,0.0}, {0.0,0.0}};
thisRegion.center.latitude = 22.569722;
thisRegion.center.longitude = 88.369722;
CLLocationCoordinate2D coordinate;
coordinate.latitude = 22.569722;
coordinate.longitude = 88.369722;
thisRegion.center = coordinate;
MKPlacemark *mPlacemark = [[[MKPlacemark alloc] initWithCoordinate:coordinate addressDictionary:nil] autorelease];
[mapView addAnnotation:mPlacemark];
[mapView setRegion:thisRegion animated:YES];