I have an app where people could enter sensitive personal information. Is there a reasonable method to protect this from – even family access?
I have an app where people could enter sensitive personal information. Is there a
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
At the very first launch of your App, ask a user to create a password, save it somewhere, then on each launch after the first, bring up a modal view controller with a
UITextFieldand set thesecureTextEntryproperty toYES(myPasswordTextField.secureTextEntry = YES;) and do not dismiss the modal view until the password matches one that has been previously set.Apple Modal View Controllers Example
UITextFieldDocsUITextInputTraitsDocs