在 IOS 上,当请求位置权限时始终打开,一段时间后,系统会向用户提示一个对话框,说 应用程序在后台使用什么位置 或类似的东西。
如何更改此对话框的描述?
是其中之一吗?
<key>NSLocationWhenInUseUsageDescription</key>
<key>NSLocationAlwaysUsageDescription</key>
<key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
Best Answer-推荐答案 strong>
<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 & 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/
|