Skip to content

Class NCBeacon

Il Kadyrov edited this page Nov 5, 2020 · 1 revision

NCBeacon class is used for storing beacons (iBeacons).

Referenced from: NCSublocation.

@interface NCBeacon : NSObject

@property (nonatomic, nonnull, readonly) NCPoint * point;

@property (nonatomic, readonly) int32_t locationId;

@property (nonatomic, readonly) int32_t sublocationId;

@property (nonatomic, nonnull, readonly) NSString * name;

@property (nonatomic, readonly) int32_t major;

@property (nonatomic, readonly) int32_t minor;

@property (nonatomic, nonnull, readonly) NSString * uuid;

@property (nonatomic, readonly) int32_t power;

@end

Public fields

  • locationId - location id where beacon placed
  • sublocationId - sublocation id where beacon placed
  • name - beacon name
  • uuid - beacon's uuid value
  • major - beacon's major value
  • minor - beacon's minor value
  • power - beacon's power value
  • point - beacon's X and Y coordinates in meters as Point (within the sublocation)
Clone this wiki locally