Currently I recognize beacons, as CLBeacon
objects. Example:
CLBeacon (uuid:F7826DA6-4FA2-4E98-8024-BC5B71E0893E, major:57140, minor:4299, proximity:1 +/- 0.77m, rssi:-75)
But I need here the name of the beacon. I mean b1A8
:
Is there any way to access it from code?
Now, I do it like this:
func beaconManager(_ manager: KTKBeaconManager, didRangeBeacons beacons: [CLBeacon], in region: KTKBeaconRegion) {
for beacon in beacons {
//here need to have a name
}
}