When I open MapView with navigationcontroller in a new view, then not waiting till map loads, and then clicking on the back button – I an exception is thrown. Can anyone confirm this? What is a work-around?
When I open MapView with navigationcontroller in a new view, then not waiting till
Share
Are you releasing the mapview when deallocating your navigationcontroller?
It may be that the mapview is sending a message to its delegate (your navigation controller), after the delegate has been released.
Try setting the mapview’s delegate to nil before releasing it.