如何判断用户对位置服务提示的回答是什么?

发布于 2024-11-08 01:37:04 字数 146 浏览 0 评论 0原文

我正在使用 ALAssetLibrary 来获取照片的原始创建日期。当我这样做时,会弹出位置服务提示,询问用户应用程序是否可以访问地理数据。我理解这样做的必要性(即使我没有使用地理数据)。但是,我如何知道用户的反应是什么?我需要能够保存响应,以便我的代码下次可以采用适当的路径。

I am using the ALAssetLibrary to grab the original creation date of a photo. When I do so, the location service prompt pops up asking the user if the app can access geodata. I understand the need for this (even though I'm not using geodata). However, how do I know what the user responded? I need to be able to save the response so my code can take the appropriate path next time.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

对岸观火 2024-11-15 01:37:04

由于您正在谈论位置服务,因此您可以使用 CLLocationManager 中的方法。

if ( [CLLocationManager authorizationStatus] != kCLAuthorizationStatusAuthorized) {
    // Your app is not authorized.
}

Since you are talking of location services, you can use the method in CLLocationManager.

if ( [CLLocationManager authorizationStatus] != kCLAuthorizationStatusAuthorized) {
    // Your app is not authorized.
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文