gpt4 book ai didi

iphone 再次请求当前位置权限

转载 作者:可可西里 更新时间:2023-11-01 03:05:26 24 4
gpt4 key购买 nike

案例:对于当前位置,用户在应用安装时选择了“不允许”,那么有什么方法可以让我再次询问用户位置并触发当前位置的 native iphone 警报?

我在 stackoverflow 上看到了一些帖子,但是有一些旧帖子,现在有没有调用新 sdk 的解决方案或者有人找到了方法,

帖子引用: CLLocation ask again for permission

最佳答案

很遗憾,您不能这样做。您可以做的一件事是提示用户更改位置设置。

if (![CLLocationManager locationServicesEnabled]) 
{
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];
}

关于iphone 再次请求当前位置权限,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17229065/

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