For example, if I have an HTML page with a web login, can I then store that information in the NSUserDefaults?
Any examples or tutorials would be greatly appreciated.
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.
If you have the page loaded in a UIWebView the only way you can access content inside it is to use
To run some javascript that would output something as a string, which you could capture and store in NSUserDefaults like any other string. Without knowing exactly what info you need in that web view, it’s hard to be more specific.