1、支持HTTP访问
添加NSAppTransportSecurity
,类型Dictionary,在NSAppTransportSecurity下添加NSAllowsArbitraryLoads
类型Boolean,设置为YES
2、应用是否支持后台运行
添加UIApplicationExitsOnSuspend
,类型Boolean,YES表示不支持后台运行,NO表示支持
3、蓝牙后台设置
手机属于锁屏状态的情况下, 仍然保持蓝牙连接, 而且能正常接收数据:添加Required background modes
类型Array,添加两个item:App shares data using CoreBluetooth
、App 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 | 写你获取使用期间定位 权限的目的 |
网友评论