0

我想检查我的应用程序是否启用或禁用了位置服务。因此,如果位置服务被禁用,我会启动不同的视图。如何使用一个情节提要做到这一点?我需要一个示例代码。

我的故事板

Segue 标识符(例如 GPS 视图):

转义标识符

我的代码:

- (void)viewDidLoad
{
    [super viewDidLoad];

    if([CLLocationManager locationServicesEnabled]){

        NSLog(@"Konum Servisleri Açık");

        if([CLLocationManager authorizationStatus]==kCLAuthorizationStatusDenied){
            alert = [[UIAlertView alloc] initWithTitle:@"Konum Servisleri Kapalı" message:@"Etkinleştirmek için ayarlardan konum servislerini kullanmasına izin verin." delegate:nil cancelButtonTitle:@"Tamam" otherButtonTitles:nil];
            [alert show];
            segueKontrol = @"Normal";
            [self performSegueWithIdentifier:@"Normal" sender:self];
        }
        else{
            segueKontrol = @"GPS";
            [self performSegueWithIdentifier:@"GPS" sender:self];
        }
    }

    else{
        NSLog(@"Konum Servisleri Kapalı");
        alert = [[UIAlertView alloc] initWithTitle:@"Konum Servisleri Kapalı" message:@"Etkinleştirmek için ayarlardan Konum Servislerini etkinleştirin." delegate:nil cancelButtonTitle:@"Tamam" otherButtonTitles:nil];
        [alert show];

        segueKontrol = @"Normal";
        [self performSegueWithIdentifier:@"Normal" sender:self];
    }

    // Do any additional setup after loading the view, typically from a nib.
}

-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender{

    if ([[segue identifier] isEqualToString:@"Normal"])
    {
        CCHop2ViewController *cc = [segue destinationViewController];
    }
    else{
     CCHopViewController *cc = [segue destinationViewController];
    }

}
4

1 回答 1

2

首先,在情节提要名称中,您的 2 个具有唯一名称的 segues,例如AB 您的第一个视图控制器(处理最左侧视图的那个)中,执行以下操作:

if (([CLLocationManager authorizationStatus] == kCLAuthorizationStatusAuthorized) &&
            [CLLocationManager locationServicesEnabled]) {
  [self performSegueWithIdentifier:@"A" sender:self];
} else {
  [self performSegueWithIdentifier:@"B" sender:self];
}
于 2013-03-14T09:28:37.443 回答