SwiftPasscodeLock icon indicating copy to clipboard operation
SwiftPasscodeLock copied to clipboard

How to verify if passcode was successfully entered

Open bitbybitllc opened this issue 9 years ago • 1 comments

I'm displaying the passcode presenter if touchID is not available and if the passcode is successfully entered I want to login to my parse database using the keychain username and password stored.

But if the passcode is not entered correctly I don't want to login using the keychain information.

After passcodeLockPresenter.presentPasscodeLock()

How do I verify if it was successfully entered or not?

bitbybitllc avatar Jul 03 '16 19:07 bitbybitllc

Wont this work ?

passcodeLockPresenter.passcodeLockVC.successCallback = { data in
            print(data)
}

johisco avatar Aug 05 '16 12:08 johisco