蓝牙信息
- 目前的需求是获取系统蓝牙状态开启与否,一些OC的方法无法获取到相关信息,经验证,下面的方面可以获取
state type
1 2 3 4 5 6 |
typedef enum { kBluetoothHCIPowerStateON = 0x01, kBluetoothHCIPowerStateOFF = 0x00, kBluetoothHCIPowerStateUnintialized = 0xFF, } BluetoothHCIPowerState; |
code
1 2 3 4 5 6 7 8 9 |
#import <IOBluetooth/IOBluetooth.h> bool is_bluetooth_enable() { @autoreleasepool { IOBluetoothHostController *controller = [[IOBluetoothHostController alloc] init]; BluetoothHCIPowerState status = [controller powerState]; return (status == kBluetoothHCIPowerStateON); } } |
本文为原创文章,版权归Aet所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ Macos屏保相关08/22
- ♥ Macos进入Recovery界面关闭SIP09/19
- ♥ VMaware:安装MacOS 10.14.610/16
- ♥ Cef:介绍06/29
- ♥ Macos开发问题:aarch64架构宏不识别06/25
- ♥ Macos编译x86_64相关二09/05