美文网首页iOS初学
【iOS初学】1. 配置及资料

【iOS初学】1. 配置及资料

作者: Lady_Lee | 来源:发表于2021-03-26 14:03 被阅读0次

    蓝牙权限配置

    Info.plist文件中:
    调用 #import <CoreBluetooth/CoreBluetooth.h>后,运行时会提示需要申请蓝牙权限,则在Info.plist的Source code中添加:

    <key>NSBluetoothPeripheralUsageDescription</key>
    <string>Value</string>
    <key>NSBluetoothAlwaysUsageDescription</key>
    <string>Value</string>
    

    或者Property List中添加:
    Privacy - Bluetooth Peripheral Usage Description
    Privacy - Bluetooth Always Usage Description

    后台运行配置:

    Application does not run in background

    资料:

    About Core Bluetooth
    s

    相关文章

      网友评论

        本文标题:【iOS初学】1. 配置及资料

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