SCPLocationStatus

Objective-C

enum SCPLocationStatus : NSUInteger {}

Swift

enum LocationStatus : UInt, @unchecked Sendable

Represents the possible states of the location object for a discovered reader.

See

SCPReader
  • The location is not known. location will be nil.

    A reader will only have a location status of unknown when a Bluetooth reader’s full location information failed to fetch properly during discovery.

    Declaration

    Objective-C

    SCPLocationStatusUnknown

    Swift

    case unknown = 0
  • The location was successfully set to a known location. location is a valid SCPLocation.

    Declaration

    Objective-C

    SCPLocationStatusSet

    Swift

    case set = 1
  • This location is known to be not set. location will be nil.

    Declaration

    Objective-C

    SCPLocationStatusNotSet

    Swift

    case notSet = 2