gpt4 book ai didi

iphone - 单击 "OK"后 GPS 未在首次运行时启动

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:15:25 25 4
gpt4 key购买 nike

点击“想要使用您的当前位置”消息的“确定”后,GPS 不会在首次运行时启动。我有一个表格 View 来显示当前位置周围的地名。表格中没有 map View ,只是使用CoreLocation框架。当我第一次构建并运行我的应用程序并进入表格 View 时,著名的消息““myApp”想使用您的当前位置”跳了出来。单击“确定”按钮后,GPS 不运行。但是当我再次进入表格 View 时,GPS 运行良好。

问题是:单击“确定”按钮后,如何让 GPS 在第一次启动时运行?提前致谢!

编辑 1

- (void)viewDidAppear:(BOOL)animated
{
[super viewDidAppear:animated];

CLLocationManager *locationManager = [[[CLLocationManager alloc] init] autorelease];
[locationManager setDelegate:self];

[locationManager startUpdatingLocation];
}

有没有检测到“想使用您的当前位置”消息的“确定”按钮被点击?

最佳答案

给你看一些代码:

- (void)viewDidLoad
{
[super viewDidLoad];

if ([CLLocationManager authorizationStatus] == kCLAuthorizationStatusNotDetermined) {

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

}
}

- (void)timerFired:(NSTimer*)theTimer{

if ([CLLocationManager authorizationStatus] == kCLAuthorizationStatusAuthorized) {
[self startUpdatingCurrentLocation];
[theTimer invalidate];
}
[self startUpdatingCurrentLocation];

}

计时器等待特定的时间间隔过去,然后触发,向目标对象发送指定的消息。 NSTimer Reference.

如果用户按下“确定”按钮,计时器可以以透明的方式第二次启动 GPS。如果没有,计时器将继续检查 GPS 状态,直到应用程序获得用户的选择。

关于iphone - 单击 "OK"后 GPS 未在首次运行时启动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10872491/

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