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.
locationwill be nil.A reader will only have a location status of
unknownwhen a Bluetooth reader’s full location information failed to fetch properly during discovery.Declaration
Objective-C
SCPLocationStatusUnknownSwift
case unknown = 0 -
The location was successfully set to a known location.
locationis a validSCPLocation.Declaration
Objective-C
SCPLocationStatusSetSwift
case set = 1 -
This location is known to be not set.
locationwill be nil.Declaration
Objective-C
SCPLocationStatusNotSetSwift
case notSet = 2