PINAuthenticatorProtectionStatus
public enum PINAuthenticatorProtectionStatus : Equatable
The list describing the actual state of the PIN protection status.
-
No threat detected. Used when the last PIN verification was successful.
Declaration
Swift
case noThreat
-
Possible threat detected. Used when at least the last PIN verification was unsuccessful.
Declaration
Swift
case possibleThreat(remainingTries: Int, coolDown: Double)
-
Returns a descriptive text which can be used information purposes about the current state of the PIN protection status. Containing information about the remaining retries and the possible cool-down time that has to pass before the next try
Declaration
Swift
public var description: String { get }