I am trying to make a map, where I can see my current location, and see what the street is called.
so far, I am able to put a pin on my map, but for some reason, I a
In order to get the viewForAnnotation to be called, add mapView.delegate=self; to e.g. the viewDidLoad method:
viewForAnnotation
mapView.delegate=self;
viewDidLoad
- (void)viewDidLoad { [super viewDidLoad]; mapView.delegate=self; }