我正在学习天气应用教程。我无法获取该位置的反向地理编码。它不断收到标题中的错误。我明白它告诉我的只是坚持如何解决它。
下面是代码片段:
if (1)
{
locationManager.delegate = self;
locationManager.desiredAccuracy = kCLLocationAccuracyBest;
[locationManager startUpdatingLocation];
MKReverseGeocoder *geocoder = [[MKReverseGeocoder alloc] initWithCoordinate:locationManager];
geocoder.delegate = self;
[geocoder start];
}
else
{
[self performSelectorInBackground:@selector(showWeatherFor:) withObject:@"95014"];
}
就像我说的,我还在学习,所以解释一下你为什么做了你所做的事情会很好。