I have multiple iBeacons with the same UUID but different major and minor numbers. It can be different combinations for major and minor, but the UUID stays the same. Say for example,
- device #1 - UUID xyz, major 1, minor 1
- device #2 - UUID xyz, major 1, minor 2
- device #3 - UUID xyz, major 2, minor 1
- .....
- device #n - UUID xyz, major 10, minor 1
Also, these iBeacons are located in close proximities, ranging from 1 - 50 feet. Therefore, their regions can intersect with each other.
In my iOS app, I want to detect all the iBeacons with the same UUID in the area and then iterate through them and read major and minor of each to detect which one of them have been detected.
Can I use
init(proximityUUID: UUID,
identifier: String)
with my UUID and then iterate through them ?