我试图为我的查询寻找答案。似乎微不足道,但我找不到答案。
我正在尝试在iOS上使用Qt蓝牙运行程序。我可以在MacOS上成功使用它。
但是,即使是最基本的代码功能,例如:
QBluetoothLocalDevice localDevice;
QString localDeviceName;
// Check if Bluetooth is available on this device
if (localDevice.isValid()) {
// Turn Bluetooth on
localDevice.powerOn();
// Read local device name
localDeviceName = localDevice.name();
// Make it visible to others
localDevice.setHostMode(QBluetoothLocalDevice::HostDiscoverable);
// Get connected devices
QList<QBluetoothAddress> remotes;
remotes = localDevice.connectedDevices();
ui->textBrowser->setText(localDevice.name() + "\n" + localDevice.address().toString());
}
给我一个空 vector 作为地址。
在iOS中运行它是否需要一些特定设置。我需要在info.plist文件上添加某些标志吗?请提示。
有关信息,我正在使用Qt 5.7和xcode 8,在macOS Sierra MacBook上进行编程并为iOS10构建它。
最佳答案
正如Paulw11所指出的,实际上,只能在iOS设备上使用低功耗蓝牙版本。
尽管在Qt文档中未特别提及,但我还是建议您尝试将iOS设备编程为与外围设备通信的BLE中央设备。
非常感谢Paulw11的投入。
关于c++ - iOS上的Qt蓝牙,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40258183/