1

ビューが位置情報サービスが有効になっているかどうかを確認するアプリを作成しようとしています。有効になっていない場合は、ポップアップでプロンプトが表示されますが、場所の検索は続行されますが、プロンプトは表示されません。位置情報サービスが有効になるとすぐに、プロセスが続行されます。

どうやってするか???

4

3 に答える 3

1

位置情報サービスが無効になっていると、位置情報の取得を続行できません。

場所の検索を続行する場合は、チェックしてサービスが有効になっていることを確認してください

[CLLocationManager locationServicesEnabled]

有効になっている場合は、場所の更新を開始します

[locationManager startUpdatingLocation];

次に

- (void)locationManager:(CLLocationManager *)manager
    didUpdateToLocation:(CLLocation *)newLocation
           fromLocation:(CLLocation *)oldLocation {
    [locationManager stopUpdatingLocation]; // This will stop to check the location
}

このコードを削除しても場所[locationManager stopUpdatingLocation];を確認できますが、これは最善の方法ではありません。apple documentation for the policy of getting the location

于 2012-06-16T10:45:22.287 に答える
0

次のコードを使用して、位置情報サービスの可用性を確認できます。

MKUserLocation *userLocation = map.userLocation;
    BOOL locationAllowed = [CLLocationManager locationServicesEnabled];
    BOOL locationAvailable = userLocation.location!=nil;

    if (locationAllowed==NO) {
        UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Location Service Disabled" 
                                                        message:@"To re-enable, please go to Settings and turn on Location Service for this app." 
                                                       delegate:nil 
                                              cancelButtonTitle:@"OK" 
                                              otherButtonTitles:nil];
        [alert show];
        [alert release];
    } else {
        if (locationAvailable==NO) 
            [self.map.userLocation addObserver:self forKeyPath:@"location" options:(NSKeyValueObservingOptionNew|NSKeyValueObservingOptionOld) context:nil];
    }
于 2012-06-16T09:30:07.177 に答える
0

.h ファイルに int カウンターを追加します。

ビューのviewDidLoadメソッドにこれを追加して、カウンターを増やすことができる毎秒をチェックします:

[NSTimer scheduledTimerWithTimeInterval:1.0     
                             target:self
                           selector:@selector(checkLocationMangerEnabled:)     
                           userInfo:nil     
                            repeats:YES];

 counter = 0;

セレクターは次のようになります。

-(void)checkLocationMangerEnabled:(id)sender
{
   if([CLLocationManager locationServicesEnabled])
   {
      //here location is enabled
   }
   else
   { //Not enabled
     if(counter == 60) // alert will showed in every 1 min u can increase or decrese
     {
       UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Location Service Disabled" 
                                                    message:@"To re-enable, please go to Settings and turn on Location Service for this app." 
                                                   delegate:nil 
                                          cancelButtonTitle:@"OK" 
                                          otherButtonTitles:nil];
      [alert show];
      [alert release];
    }
    counter++;
   }
}
于 2012-06-16T09:43:02.513 に答える