KTKEddystoneManager Class Reference

Inherits from NSObject
Declared in KTKEddystoneManager.h

Other Properties

  discovering

A Boolean indicating whether the eddystone manager is currently discovering eddy stones.

@property (nonatomic, assign, readonly, getter=isDiscovering) BOOL discovering

Discussion

A Boolean indicating whether the eddystone manager is currently discovering eddy stones.

Declared In

KTKEddystoneManager.h

  centralState

The current state of the bluetooth central.

@property (nonatomic, assign, readonly) CBManagerState centralState

Discussion

The current state of the bluetooth central.

Declared In

KTKEddystoneManager.h

  delegate

The delegate object that will receive events.

@property (nonatomic, weak, readonly) id<KTKEddystoneManagerDelegate> delegate

Discussion

The delegate object that will receive events.

Declared In

KTKEddystoneManager.h

Initialization Methods

– initWithDelegate:

Initializes and returns an eddystone manager object with the specified delegate.

- (instancetype)initWithDelegate:(id<KTKEddystoneManagerDelegate>)delegate

Parameters

delegate

The delegate object that will receive events.

Return Value

An initialized eddystone manager object.

Discussion

Initializes and returns an eddystone manager object with the specified delegate.

Declared In

KTKEddystoneManager.h

Eddystone Discovery

  discoveryRegions

Set of regions currently being tracked using discovery. (read-only)

@property (nonatomic, strong, readonly) NSSet *discoveryRegions

Discussion

Set of regions currently being tracked using discovery. (read-only)

Declared In

KTKEddystoneManager.h

  invalidationAgeForeground

Threshold after which eddystone device is interpreted as lost in foreground mode. (read-write)

@property (nonatomic, assign, readwrite) NSTimeInterval invalidationAgeForeground

Discussion

Threshold after which eddystone device is interpreted as lost in foreground mode. (read-write)

Declared In

KTKEddystoneManager.h

  invalidationAgeBackground

Threshold after which eddystone device is interpreted as lost in background mode. (read-write)

@property (nonatomic, assign, readwrite) NSTimeInterval invalidationAgeBackground

Discussion

Threshold after which eddystone device is interpreted as lost in background mode. (read-write)

Declared In

KTKEddystoneManager.h

– startEddystoneDiscoveryInRegion:

Starts the delivery of discovery notifications for eddystones in the specified region.

- (void)startEddystoneDiscoveryInRegion:(__kindof KTKEddystoneRegion *_Nullable)region

Parameters

region

The region that identifies the eddystones.

Discussion

Starts the delivery of discovery notifications for eddystones in the specified region.

Declared In

KTKEddystoneManager.h

– stopEddystoneDiscoveryInRegion:

Stops the delivery of discovery notifications for eddystones in the specified region.

- (void)stopEddystoneDiscoveryInRegion:(__kindof KTKEddystoneRegion *_Nullable)region

Parameters

region

The region that identifies the eddystones.

Discussion

Stops the delivery of discovery notifications for eddystones in the specified region.

Declared In

KTKEddystoneManager.h

– stopEddystoneDiscoveryInAllRegions

Stops the delivery of all discovery notifications for eddystones.

- (void)stopEddystoneDiscoveryInAllRegions

Discussion

Stops the delivery of all discovery notifications for eddystones.

Declared In

KTKEddystoneManager.h