how to monitor multiple estimote beacon regions with estimote ESTBeaconManager.i am currently using the using code for a single beacon
self.beaconManager = [[ESTBeaconManager alloc] init];
self.beaconManager.delegate = self;
[self.beaconManager requestAlwaysAuthorization];
NSUUID *uuid = [[NSUUID alloc] initWithUUIDString:@"myuuid"];
self.beaconRegion = [[CLBeaconRegion alloc] initWithProximityUUID:uuid
major:17644
minor:36076
identifier:@"EstimoteSampleRegion"];
self.beaconRegion.notifyOnEntry = YES;
self.beaconRegion.notifyOnExit = YES;
[self.beaconManager startMonitoringForRegion:self.beaconRegion];