gpt4 book ai didi

ios - 如何检查位置服务并启动不同的 View ?

转载 作者:行者123 更新时间:2023-11-28 22:37:47 25 4
gpt4 key购买 nike

我想检查我的应用程序启用或禁用位置服务。因此,如果定位服务被禁用,我会启动不同的 View 。我如何使用一个 Storyboard来做到这一点?我需要一个示例代码。

My Storyboard

Segue 标识符(例如 GPS View ):

segue identifier

我的代码:

- (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];
}

}

最佳答案

首先,在 Storyboard中用唯一的名称命名你的 2 个 segue,比如 AB在您的第一个 View Controller (处理最左边 View 的那个)中,执行此操作:

if (([CLLocationManager authorizationStatus] == kCLAuthorizationStatusAuthorized) &&
[CLLocationManager locationServicesEnabled]) {
[self performSegueWithIdentifier:@"A" sender:self];
} else {
[self performSegueWithIdentifier:@"B" sender:self];
}

关于ios - 如何检查位置服务并启动不同的 View ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15405399/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com