Save and Autofill Data in UIWebView - ios

I have a web view where the user can enter their email and password. I'm wanting to know how I could save the entered values and autofill the fields when the user returns to the web view during future uses..

Related

iOS (React Native) password autofill takes wrong field for username

In my react native application, I'm having trouble saving login and password to a keychain. It's functional, however, it's saving the incorrect username.
Email, First Name, Last Name, Password, and Confirm Password are the text boxes in my order for the signup page.
However, I gave the email field textContentType='username' and the password field textContentType='password'. However, it uses the last name as a username by default. It seems to ignore my textContentType.
I'm aware that similar problems have been raised in the community, but I'm looking for any updates or possible solutions rather than rearranging the fields?
Keychain takes Password and input right before password, in your case is Last Name. Try to reorder the form input positions.

How can I stop iOS from asking to save an incorrect password?

I'm rebuilding the login screen for our app, and getting some annoying behavior from iOS for failed logins. After the user enters a username and password, when I show a new view controller, the system pops up a sheet asking if I want to save the username and password.
This would just be okay if it only showed up for successful logins, but it also asks to save the password after the user fails to log in and taps the Cancel button to quit trying.
How does iOS determine when to show this sheet, and is there any way to tell it not to bother saving an incorrect password? Is this feature actually documented anywhere? I've seen the Password AutoFill page, but there's really not much there.
If you set the username and password field contents to nil before dismissing the view controller, then iOS will not prompt to save the account information.

How to securely email something to myself from an iOS app?

I'd like to implement a feature in my app where the user can enter some data, and upon pressing a submit button the app then logs into an email account and sends me an email (so that I can then view the data the user entered). I don't want to just store my password in plain text in the app, so are there any more secure ways to accomplish this?
I understand that usually it's best to just build a custom backend and have the app make a post request, but that won't be possible here.

Parse.com - Email Verification and adding a new object with Swift

I have got my Parse.com login view controller and sign up view controller working just fine but I would like to do email verification. So when the user has verified through email, they can enter the app but if not, they are denied access.
Also, I would like another text field where the user enters details for a special code, it's like the secondary password I guess, this will also have to be entered into the sign up screen when they sign up to the app.
Other than that, I can register users and get them to log in, I just need help with this.

Save Facebook data with custom values

I trying to use login with Facebbok but I have trouble. I don't know how to do this:
User use Facebook Connect and accept website's application.
Next, user is redirected to form where he give username for my website.
Fetched Facebook data and username are saved in database.
Any solution?
I found solution.
User use Facebook Connect.
Fetched Facebook data is saved to session.
User is redirected to form where is name input.
Form is sending request with data from session.

Resources