macOS(2017 iMac)でブルートゥース周辺機器にアクセスしようとしていますが、CBCentralManager
は.poweredOn
状態には入らないようです。macOS CBCentralManagerの状態がサポートされていません
import Cocoa
import CoreBluetooth
class BluetoothManager: NSObject {
var centralManager: CBCentralManager!
override init() {
super.init()
self.centralManager = CBCentralManager(delegate: self, queue:nil)
self.checkState()
}
func checkState() {
print("central state: \(self.centralManager?.state.rawValue ?? -1)")
DispatchQueue.main.asyncAfter(deadline: DispatchTime.now() + .seconds(2), execute: {
self.checkState()
})
}
}
extension BluetoothManager: CBCentralManagerDelegate {
func centralManagerDidUpdateState(_ central: CBCentralManager) {
switch central.state {
case .poweredOn:
print("Power on")
case .unsupported:
print("Unsupported")
default:break
}
}
}
@NSApplicationMain
class AppDelegate: NSObject, NSApplicationDelegate {
var bluetoothManager: BluetoothManager?
func applicationDidFinishLaunching(_ aNotification: Notification) {
self.bluetoothManager = BluetoothManager()
}
...
}
この意志警告コンソールで、Unsupported
一貫出力
[CoreBluetooth] XPC connection invalid
私はそれがiOSデバイスのためだけであると考えているものの、私は、私が試したInfo.plist
キーNSBluetoothPeripheralUsageDescription
、の認識しています。
iMacでブルートゥースを管理するのが間違っていますか?それとも私の実装は何か不足していますか? Core Bluetooth documentationで必要なものすべてをカバーしたような気がします。