STPRedirectContextState
Objective-C
enum STPRedirectContextState {}
Swift
enum STPRedirectContextState : UInt
Possible states for the redirect context to be in
-
Initialized, but redirect not started.
Declaration
Objective-C
STPRedirectContextStateNotStarted
Swift
case notStarted = 0
-
Redirect is in progress.
Declaration
Objective-C
STPRedirectContextStateInProgress
Swift
case inProgress = 1
-
Redirect has been cancelled programmatically before completing.
Declaration
Objective-C
STPRedirectContextStateCancelled
Swift
case cancelled = 2
-
Redirect has completed.
Declaration
Objective-C
STPRedirectContextStateCompleted
Swift
case completed = 3