gpt4 book ai didi

ios - 在 iOS 上无法使用 Swift 代码扫描仪找到蓝牙设备

转载 作者:行者123 更新时间:2023-11-29 05:52:50 27 4
gpt4 key购买 nike

我正在通过我的 iOS 应用程序与非标准蓝牙设备配对。

我发现 iPhone 只检测特定的设备类别。测试进行于:- 网络笔记本电脑 - 类别:0x02010c- watch - 类别:0xff0704

内置蓝牙扫描仪已成功找到这些设备。我也能够与他们配对。

我正在我的应用程序中进行扫描并尝试与设备配对。不幸的是,在用 Swift 编写蓝牙扫描仪后,我的手机无法检测到该设备。

class ViewController: UIViewController, CBCentralManagerDelegate {  
//MARK: Properties
@IBOutlet weak var scanButton: UIButton!
@IBOutlet weak var devicesList: UITextView!
private var centralManager: CBCentralManager!
private var bluetoothOn: Bool!
private var scanInProgress: Bool!

//MARK: Initialization
override func viewDidLoad() {
super.viewDidLoad()

centralManager = CBCentralManager(delegate: self, queue: .main, options: [CBCentralManagerScanOptionAllowDuplicatesKey: NSNumber(value: false)])
bluetoothOn = false
scanInProgress = false
}

//MARK: Actions
@IBAction func scanDevices(_ sender: UIButton) {
if bluetoothOn && !scanInProgress {
scanInProgress = true
centralManager.scanForPeripherals(withServices: nil, options: nil)
} else {
centralManager.stopScan()
}
}

func centralManagerDidUpdateState(_ central: CBCentralManager) {
if central.state == .poweredOn {
print("Bluetooth is On")
bluetoothOn = true
}
}

func centralManager(_ central: CBCentralManager, didDiscover peripheral: CBPeripheral, advertisementData: [String : Any], rssi RSSI: NSNumber) {
let line1 = "Name : \(peripheral.name ?? "(No name)")"
let line2 = "\nRSSI : \(RSSI)"
let line3 = "\nUUID : \(peripheral.identifier)"
var lineN = ""
let lineEnd = "\n------------------------------------------------------\n"

for ad in advertisementData {
lineN.append("\nAD Data: \(ad)")
}

devicesList.text += "\n \(line1) + \(line2) + \(line3) + \(line4) + \(line5) +\(lineN) + \(lineEnd)"
print(devicesList.text as Any)
}
}

我希望我的代码能够像内置系统扫描仪一样找到蓝牙设备。为什么我的扫描仪找不到该设备?内置蓝牙扫描器和Swift API扫描解决方案有区别吗?

最佳答案

我发现使用CoreBluetooth框架不可能找到任何BLE设备。苹果只是阻止了这种可能性。唯一的替代方法是使用 Private API 连接我想要的任何蓝牙设备。首先最好的解决方案是获取 BeeTee来自 GitHub 的项目。它只是展示了如何使用 Private API 扫描蓝牙设备。

这个解决方案工作得很好,不幸的是,它使应用程序无法进入 AppStore。 Apple 不允许这种解决方案,因此应用程序将无法通过验证过程。

关于ios - 在 iOS 上无法使用 Swift 代码扫描仪找到蓝牙设备,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55510737/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com