天気予報アプリのチュートリアルに取り組んでいます。場所の逆ジオコードを取得できません。タイトルにあるエラーが発生し続けます。私はそれが私に言っていることを理解しています。それを修正する方法にこだわっています。
コードスニペットは次のとおりです。
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"];
}
私が言ったように、私はまだ学んでいるので、なぜあなたがしたことをしたのかについての説明がいいでしょう.