I would like do coding in ios with Bluetooth low energy(BLE). i wanting to show notification of new BLE device while app background. is possible do it? I bought BLE Device from sensor tag site.
1 Answers
0
votes
Yes, it is possible both in central and peripheral mode. You should declare the necessary permissions in your Info.plist and then you can search for one specific service in the background with the standard method scanForPeripheralsWithServices:options:
of CBCentralManager
Start with reading the docs of Apple.