CLProximity
public enum CLProximity : String, CustomStringConvertible, CustomDebugStringConvertible
The relation between the user’s device and a nearby beacon. Apple Documentation
-
The proximity of the beacon could not be determined.
Declaration
Swift
case unknown = "Unknown"
-
The beacon is immediately adjacent to the device.
Declaration
Swift
case immediate = "Immediate"
-
The beacon is nearby, but not immediately adjacent to the device.
Declaration
Swift
case near = "Near"
-
The beacon is far away from the device.
Declaration
Swift
case far = "Far"
-
Declaration
Swift
public var description: String { get }
-
Declaration
Swift
public var debugDescription: String { get }