We need to identify the bluetooth peripheral connected previously on a device.
In reference to the iOS documentation on CBPeripheral class:
There are 2 properties:
- CFUUIDRef UUID (available on iOS 5.0 - 7.1)
- NSUUID *identifier (available on iOS 7.0 - 7.1)
It looks like both properties are deprecated now, and Apple provides no suggestion on the updated solution. What is the alternative / updated API call now?