我怎么知道我的设备的蓝牙是否通电?

时间:2013-12-02 13:34:50

标签: ios bluetooth

我只需要获取ios设备的蓝牙状态。

是否有人知道API,我搜索了apple.com但没找到......我也知道我可以使用CoreBluetooth,但它可以在IOS6时使用以后,那么IOS5呢?

1 个答案:

答案 0 :(得分:4)

使用CBCentralManager,属性state具有以下值:

typedef enum {
   CBCentralManagerStateUnknown = 0,
   CBCentralManagerStateResetting,
   CBCentralManagerStateUnsupported,
   CBCentralManagerStateUnauthorized,
   CBCentralManagerStatePoweredOff,
   CBCentralManagerStatePoweredOn,
} 

在此处查找所有文档:

CBCentralManager Apple Doc