Skip to content

Instantly share code, notes, and snippets.

@moveo123
moveo123 / Exhibit
Last active August 29, 2015 14:19
Mewseum Quest Estimote Analytics integration code
/*
This is the code to fetch nearest beacon and pass to DescriptionViewController.
*/
- (void)beaconManager:(id)manager didRangeBeacons:(NSArray *)beacons inRegion:(CLBeaconRegion *)region{
if(beacons.count!=0){
self.beacon = [beacons firstObject];
NSLog(@"UUID - %@",self.beacon.proximityUUID.UUIDString);
NSLog(@"%@",[NSString stringWithFormat:@"Major: %@, Minor: %@", self.beacon.major, self.beacon.minor]);