SPSmartSharingCodeErrorType
Objective-C
NS_ENUM(NSUInteger, SPSmartSharingCodeErrorType) {
/** The format of the sharing code is incorrect */
SPSmartSharingCodeErrorTypeInvalidFormat = 1,
/** The POI data could not be found from our Steerpath server */
SPSmartSharingCodeErrorTypeDataFound = 2
}
Swift
enum SPSmartSharingCodeErrorType : UInt, @unchecked Sendable
Undocumented
-
The format of the sharing code is incorrect
Declaration
Objective-C
SPSmartSharingCodeErrorTypeInvalidFormat = 1Swift
case invalidFormat = 1 -
The POI data could not be found from our Steerpath server
Declaration
Objective-C
SPSmartSharingCodeErrorTypeDataFound = 2Swift
case dataFound = 2
SPSmartSharingCodeErrorType Enumeration Reference