didEnterRegion calls

I have two beacons sitting side by side with the same UUID. I am monitoring for beacons based on this UUID (no minor or major values). Currently in my application my didEnterRegion and didExitRegion delegates only fire once each displaying one exit and one entry notification. Should they be firing for both beacons (two entry and two exit notifications)? Or is it designed so that once you enter a region (UUID) it does not care how many beacons are there?

Hi Daniel,

If you monitor only for UUID (no major/minor specified) iOS does not care how many beacons are in range. The enter and exit region notifications will fire only once.

If you want to get separate notifications for each of those beacons you would have to create separate regions for them.

Thanks for the answer. After playing around with it this is what I assumed.