FUIPasscodeInputMode

public enum FUIPasscodeInputMode : Int

Passcode input mode. Typically used in shouldTryPasscode function as one of the arguments to indicate the current mode. When the shouldTryPasscode function is triggered by FUIPasscodeInputController, the mode can be either match or matchForChange. when the function is triggered by FUIPasscodeCreateController, the mode is either create or change.

  • User tries to create a new passcode

    Declaration

    Swift

    case create
  • User tries to match the previously set passcode when challenged

    Declaration

    Swift

    case match
  • User tries to match the previously set passcode in order to change passcode

    Declaration

    Swift

    case matchForChange
  • User tries to replace an existing passcode with a new passcode

    Declaration

    Swift

    case change