I have a question about user authentication when developing an iOS application. When the user launches the application, they will be prompted with the home screen which will prompt them to input a valid username and password. Once their credentials are validated they will be able to access the rest of the application. I have no idea on how to create this validation operation. I know how to create the visual portion of the application, however, anything beyond that i don't understand. In short, how do you create an application that needs credentials from the user to function?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
First, Apple will reject your app if it cannot do something useful without authentication. Second, you collect the inputs from the user, then you will have to fire off a NSURLConnection to your server in order to authenticate, observe the response and act accordingly. |
|||
|
|
It depends on how your server is set up, considering you are validating with your server. You'd use
In my case I respond with a JSON encoded array. |
|||||
|
