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.4Declaration
Objective-C
- (void)secureInputUi:(id)caller keyPressedCountChanged:(NSInteger)count forInputField:(NSInteger)inputFieldIndex;Swift
func secureInputUi(_ caller: Any!, keyPressedCountChanged count: Int, forInputField inputFieldIndex: Int)Parameters
callercaller.
countnumber of key pressed count for the following input field.
inputFieldIndexinput 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.4Declaration
Objective-C
- (void)secureInputUi:(id)caller selectedInputFieldChanged:(NSInteger)inputFieldIndex;Swift
func secureInputUi(_ caller: Any!, selectedInputFieldChanged inputFieldIndex: Int)Parameters
callercaller.
inputFieldIndexinput 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.4Declaration
Objective-C
- (void)secureInputUiOkButtonPressed:(id)caller;Swift
func secureInputUiOkButtonPressed(_ caller: Any!)Parameters
callercaller.
-
Secure input UI on Delete button pressed.
Since
4.4Declaration
Objective-C
- (void)secureInputUiDeleteButtonPressed:(id)caller;Swift
func secureInputUiDeleteButtonPressed(_ caller: Any!)Parameters
callercaller.
EMSecureInputCustomUiDelegate Protocol Reference