I\'m wanting to make a password unlock screen for my app, and I\'m not sure how I\'d go about it.
I\'m wanting it to look like the Apple-designed version of it, whic
most likely you create the view and when all the fields are set you check against the known password or you check the hash of the input passkey against the hash you have stored.
basically you have a stored password/hash and you check against that when you have all field filled in in your view.
when the password is correct (either by hash checking or password) you show your next view, otherwise you display an error saying the password is incorrect.