美文网首页
iOS报错:reason: ‘State restoration

iOS报错:reason: ‘State restoration

作者: 羹倪衫航 | 来源:发表于2020-03-02 10:53 被阅读0次

    报错内容:

    * 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’

    解决方法:

    在plist文件中添加蓝牙后台使用的模式

    <key>UIBackgroundModes</key>

    <array>

    <string>bluetooth-central</string>

    </array>

    Required background modes 属性 即后台工作模式

    相关文章

      网友评论

          本文标题:iOS报错:reason: ‘State restoration

          本文链接:https://www.haomeiwen.com/subject/dfkpkhtx.html