アプリで現在地を検索したい。座標をuse CoreLocationManager
取得したいのですが、アプリを起動すると、位置情報のプライバシーを許可するよう天気予報が表示され、[OK] ボタンをクリックしても何も起こりませんでした。
次に、iPhone で Settings-Privacy-location を開くと、アプリで場所が有効になっていないことがわかりました。電源を入れてからアプリを再起動しても何も起こりませんか?
これが私のコードです:
CLLocationManager *locationManager = [[CLLocationManager alloc] init];
[locationManager setDelegate:self];
[locationManager setDesiredAccuracy:kCLLocationAccuracyBest];
[locationManager startUpdatingLocation];
-(void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations
{
}
-(void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations
ブレークポイントを設定した後、メソッドを実行できません。