OStack程序员社区-中国程序员成长平台

标题: IOS后台位置info.plist键名 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-12 14:40
标题: IOS后台位置info.plist键名

在 IOS 上,当请求位置权限时始终打开,一段时间后,系统会向用户提示一个对话框,说 应用程序在后台使用什么位置 或类似的东西。

如何更改此对话框的描述? 是其中之一吗?

    <key>NSLocationWhenInUseUsageDescription</key>
    <key>NSLocationAlwaysUsageDescription</key>
    <key>NSLocationAlwaysAndWhenInUseUsageDescription</key>



Best Answer-推荐答案


    <key>NSLocationAlwaysUsageDescription</key>
    <string>This string is required to gain permission to access location services on iOS 8+ when the app in the background and should describe how your app uses location services. Set this string in the Info.plist</string>
    <key>NSLocationUsageDescription</key>
    <string>This string is optional but recommended on iOS 6 &amp; 7 and should describe how your app uses location services. Set this string in the Info.plist</string>
    <key>NSLocationWhenInUseUsageDescription</key>
    <string>This string is required to gain permission to access location services on iOS 8+ and should describe how your app uses location services. Set this string in the Info.plist</string>
    <key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
    <string>This string is required to gain permission to access location services on iOS 11+ and should describe how your app uses location services. Set this string in the Info.plist</string>

关于IOS后台位置info.plist键名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50839830/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4