Conforms to NSObject
Declared in BWBeaconManager.h

Overview

BWBeaconManagerDelegate

Instance Methods

beaconManager:didCheckAvailability:

Invoked when a Bluetooth LE availability check is complete.

- (void)beaconManager:(BWBeaconManager *)manager didCheckAvailability:(BOOL)isAvailable

Parameters

manager

used to access BWBeaconManager object

isAvailable

boolean value indicating availability of Bluetooth LE on device.

Declared In

BWBeaconManager.h

beaconManager:didDetermineState:forRegion:

Invoked when there’s a state transition for a monitored region or in response to a request for state via a a call to requestStateForRegion:.

- (void)beaconManager:(BWBeaconManager *)manager didDetermineState:(CLRegionState)state forRegion:(BWBeaconRegion *)region

Parameters

manager

used to access BWBeaconManager object

state

state of a beacon in the region

region

state deteremined for this region

Declared In

BWBeaconManager.h

beaconManager:didEnterRegion:

Invoked when a beacon enters a monitored region.

- (void)beaconManager:(BWBeaconManager *)manager didEnterRegion:(BWBeaconRegion *)region

Parameters

manager

used to access BWBeaconManager object

region

a monitored beacon entered in this region

Declared In

BWBeaconManager.h

beaconManager:didExitRegion:

Invoked when a beacon exits a monitored region.

- (void)beaconManager:(BWBeaconManager *)manager didExitRegion:(BWBeaconRegion *)region

Parameters

manager

used to access BWBeaconManager object

region

a monitored beacon entered in this region

Declared In

BWBeaconManager.h

beaconManager:didRangeBeacons:inRegion:

Invoked when a new set of beacons are available in the specified region.

- (void)beaconManager:(BWBeaconManager *)manager didRangeBeacons:(NSArray *)beacons inRegion:(BWBeaconRegion *)region

Parameters

manager

used to access BWBeaconManager object

beacons

an array of BWBeacons

region

ranged beacons in this region

Declared In

BWBeaconManager.h