|
在开发中有需求要使用系统蓝牙库,但在iOS10中出现了崩溃,问题如下:
Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'State restoration of CBCentralManager is only allowed for applications that have specified the "bluetooth-central" background mode
解决方法:
在info.plist加Required background modes类型array在列表下添加App communicates using CoreBluetooth
同样的,使用相册或照片时也会出现这样的问题,同样使用之前也需要在Info.plist下添加说明。在plist文件下添加Privacy - Camera Usage Description键与一个字符串值(访问相册),Privacy - Photo Library Usage Description键与一个字符串值(访问相机)
|
|