Qt Bluetooth on iOS
问题 I tried to search for an answer for my query. It seems trivial, but I cant find an answer yet. I am trying to run a program using Qt Bluetooth on iOS. I am able to use it successfully on MacOS. But even the most basic feature of code like : 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