Info plist常用配置

2018-08-22  本文已影响11人  Moker_C

1、支持HTTP访问

添加NSAppTransportSecurity,类型Dictionary,在NSAppTransportSecurity下添加NSAllowsArbitraryLoads类型Boolean,设置为YES

2、应用是否支持后台运行

添加UIApplicationExitsOnSuspend,类型Boolean,YES表示不支持后台运行,NO表示支持

3、蓝牙后台设置

手机属于锁屏状态的情况下, 仍然保持蓝牙连接, 而且能正常接收数据:添加Required background modes类型Array,添加两个item:App shares data using CoreBluetoothApp communicates using CoreBluetooth

4、获取用户权限

Key Type Value
NSCameraUsageDescription String 写你获取相机权限的目的
NSPhotoLibraryUsageDescription String 写你获取相册权限的目的
NSContactsUsageDescription String 写你获取通讯录权限的目的
NSMicrophoneUsageDescription String 写你获取麦克风权限的目的
NSCalendarsUsageDescription String 写你获取日历权限的目的
NSAppleMusicUsageDescription String 写你获取媒体资料库权限的目的
NSHealthShareUsageDescription String 写你获取健康分享权限的目的
NSHealthUpdateUsageDescription String 写你获取健康更新权限的目的
NSMotionUsageDescription String 写你获取运动与健身权限的目的
NSRemindersUsageDescription String 写你获取提醒事项权限的目的
NSBluetoothPeripheralUsageDescription String 写你获取蓝牙权限的目的
NSLocationUsageDescription String 写你获取位置权限的目的
NSLocationAlwaysUsageDescription String 写你获取持续定位权限的目的
NSLocationWhenInUseUsageDescription String 写你获取使用期间定位权限的目的
上一篇下一篇

猜你喜欢

热点阅读