I want my iPhone App to display a list of ALL Bluetooth Devices nearby (e.g. other iPhones, Android,...basically everything with bluetooth enabled). I'm using the private framework "BluetoothManager" (I know, that this will cause rejection at AppStore).
So far, everything worked fine:
- I can toggle Bluetooth on an off,...
- I get an NSLog that DeviceScanning is set enabled...
- and if I check the function (BOOL)deviceScanningInProgress I get "Yes" as well.
But BTM never seems to post a "BluetoothDeviceDiscoveredNotification". I have two other iPhones with enabled bluetooth lying next to the device, I'm testing my app on, but none of them is discovered (they are both discoverable, my MAC finds them!)
Any ideas what the problem might be?
I browsed stackoverflow and found another question, where someone is using basically the same code, and it works for him! See: other question I have no idea, why my app does NOT discover any devices although it is "working".
I would really appreciate some answers! As there is no documentation on BluetoothManager, I'm slowly running out of ressources to get help from ;o)
Thanks!