EMSecureInputCustomUiDelegate

Objective-C

@protocol EMSecureInputCustomUiDelegate <NSObject>

Swift

protocol EMSecureInputCustomUiDelegate : NSObjectProtocol

Secure input custom UI delegate.

Since

4.4
  • Secure input UI key pressed count changed event.

    Since

    4.4

    Declaration

    Objective-C

    - (void)secureInputUi:(id)caller
        keyPressedCountChanged:(NSInteger)count
                 forInputField:(NSInteger)inputFieldIndex;

    Swift

    func secureInputUi(_ caller: Any!, keyPressedCountChanged count: Int, forInputField inputFieldIndex: Int)

    Parameters

    caller

    caller.

    count

    number of key pressed count for the following input field.

    inputFieldIndex

    input field index. Input field index 0 for first input field, and 1 for second input field.

  • Secure input UI selected input field changed event.

    Since

    4.4

    Declaration

    Objective-C

    - (void)secureInputUi:(id)caller
        selectedInputFieldChanged:(NSInteger)inputFieldIndex;

    Swift

    func secureInputUi(_ caller: Any!, selectedInputFieldChanged inputFieldIndex: Int)

    Parameters

    caller

    caller.

    inputFieldIndex

    input field index. Input field index 0 for first input field, and 1 for second input field.

  • Secure input UI on OK button pressed.

    Since

    4.4

    Declaration

    Objective-C

    - (void)secureInputUiOkButtonPressed:(id)caller;

    Swift

    func secureInputUiOkButtonPressed(_ caller: Any!)

    Parameters

    caller

    caller.

  • Secure input UI on Delete button pressed.

    Since

    4.4

    Declaration

    Objective-C

    - (void)secureInputUiDeleteButtonPressed:(id)caller;

    Swift

    func secureInputUiDeleteButtonPressed(_ caller: Any!)

    Parameters

    caller

    caller.