BKiBeaconData

open class BKiBeaconData : NSObject, NSSecureCoding

Read only data object for iBeacon data that is emitted by beacons

See iBeacon specification at https://developer.apple.com/ibeacon

iBeaconData values are part of BKDiscoveryData

  • The UUID if the beacon is emitting iBeacon

    Declaration

    Swift

    @objc
    internal(set) open var uuid: UUID!
  • The Major ID if the beacon is emitting iBeacon

    Declaration

    Swift

    @objc
    internal(set) open var major: NSNumber!
  • The Minor ID if the beacon is emitting iBeacon

    Declaration

    Swift

    @objc
    internal(set) open var minor: NSNumber!
  • The relative distance to the beacon.

    Declaration

    Swift

    internal(set) open var proximity: CLProximity?
  • The accuracy of the proximity value, measured in meters from the beacon.

    Declaration

    Swift

    internal(set) open var accuracy: CLLocationAccuracy?