I am wondering if there is a way i can get an IOBluetoothDevice *
object from a CBPeripheral *
object because I am making an advanced bluetooth controller framework (Its going to be based on IOBluetooth
) and Im using it so scan for Bluetooth Classic
and Bluetooth Low Energy
devices. Here are some of the problems:
IOBluetooth
does allow you to search for both networks but for some reason its not showing up all of theBluetooth Low Energy
Devices thatCoreBluetooth
is.If I use
CoreBluetooth
to search forBluetooth Low Energy
Devices I won't be able to get the address which I require for later use.
So is there any way i can get an IOBluetoothDevice
object from a CBPeripheral
?
thanks :D