i\'m try to retreiving city name with cllocation and mkreversegeocoder. in my viewdidload method i istance cllocationmanager:
self.locManager = [[CLLocationManag
Don't create the reverse geocoder as a local variable.
Look at the MKReverseGeocoder example in the CurrentAddress sample app provided by Apple. See MapViewController.h and MapViewController.m.
Follow the same pattern in your code.