SPGeofenceErrorType
Objective-C
enum SPGeofenceErrorType : NSUInteger {}
Swift
enum SPGeofenceErrorType : UInt
Geofence error types.
-
Circle geofence is missing content. Make sure you’ve set the coordinate and the radius of the geofence.
Declaration
Objective-C
SPGeofenceErrorTypeCircleMissingContent = 1Swift
case circleMissingContent = 1 -
Polygon geofence is missing content. Make sure you’ve added polygon data containing at least 3 points.
Declaration
Objective-C
SPGeofenceErrorTypePolygonMissingContent = 2Swift
case polygonMissingContent = 2 -
Geofence type was unsupported. Currently you can use circle and polygon geofences.
Declaration
Objective-C
SPGeofenceErrorTypeUnsupportedType = 3Swift
case unsupportedType = 3 -
Internal failure. Database could not be opened.
Declaration
Objective-C
SPGeofenceErrorTypeInternalDatabaseError = 4Swift
case internalDatabaseError = 4 -
Beacon geofence is missing radius
Declaration
Objective-C
SPGeofenceErrorTypeBeaconMissingContent = 5Swift
case beaconMissingContent = 5 -
Number of geofence error types.
Declaration
Objective-C
SPGeofenceErrorTypeCountSwift
case count = 6
SPGeofenceErrorType Enumeration Reference