EMDskppLocalPinCallback
Objective-C
@protocol EMDskppLocalPinCallback <NSObject>
Swift
protocol EMDskppLocalPinCallback : NSObjectProtocol
Passed to the OnLocalPinRequestBlock in order to let the the client respond on the callback with one of the supported actions - the token PIN entry or cancel.
Since
4.1-
Informs the provisioning process that the token PIN entry completed with the PIN value.
Since
4.1Declaration
Objective-C
- (void)localPinEntryCompletedWithPin:(id<EMPinAuthInput>)userPin;Swift
func localPinEntryCompleted(withPin userPin: (any EMPinAuthInput)!)Parameters
userPinThe entered PIN value. never ‘nil’.
-
Notifies the provisioning process that the token PIN entry was cancelled and therefore the entire provisioning process aborts.
Since
4.1Declaration
Objective-C
- (void)cancelLocalPinEntry;Swift
func cancelLocalPinEntry()
EMDskppLocalPinCallback Protocol Reference