7

我在通过IOBluetooth框架列出所有设备时遇到问题。有没有办法不仅可以获得经典设备,还可以获得 BLE 设备?

我的代码是

let ioBluetoothManager = IOBluetoothDeviceInquiry(delegate: self)
var ioDevices = [IOBluetoothDevice]()
...
ioBluetoothManager?.start()
...

func deviceInquiryStarted(_ sender: IOBluetoothDeviceInquiry!) {
    print("started")
}
///
//IOBluetoothDeviceInquiryDelegate
///

func deviceInquiryDeviceFound(_ sender: IOBluetoothDeviceInquiry!, device: IOBluetoothDevice!) {
    print("found device")
    ioDevices.append(device)
    scrubber.reloadData()
    tableView.reloadData()
}

func deviceInquiryComplete(_ sender: IOBluetoothDeviceInquiry!, error: IOReturn, aborted: Bool) {
    print("completed")
}

我知道我可以使用 CoreBluetooth 做到这一点,但我还需要过滤设备以匹配特定标准。

这个答案我知道我可以做到这一点,但那个答案缺乏细节。现在我只是得到经典蓝牙设备的列表。

有人可以帮忙吗?

升级版:

现在我找到.searchType了带有kIOBluetoothDeviceSearchClassickIOBluetoothDeviceSearchLE常量的方法。在 viewDidLoad 我做了以下事情:

ioBlutoothmanager.searchType = IOBluetoothDeviceSearchLE.rawValue但它仍然只能找到经典设备。

升级版:

一直以来,它运行得如此正常,我没想到。它过滤了我不需要的所有设备,而且我没有 AirPods 来检查。

4

1 回答 1

8

好的,所以最后它工作了。只需将 searchType 属性设置为 IOBluetoothDeviceSearchLE.rawValue,它就会从搜索中排除所有不必要的设备——这正是我想要的。现在我的搜索查询与默认的蓝牙资源管理器完全一样。

ioBlutoothmanager.searchType = kIOBluetoothDeviceSearchLE.rawValue

也许有一天它会帮助某人

于 2018-06-11T13:53:34.933 回答