if the user is registering first time in my app he has to signup otherwise he has to do just login.what is the condition we use to check whether user is new or existing user.
I'm following this link
if the user is registering first time in my app he has to signup otherwise he has to do just login.what is the condition we use to check whether user is new or existing user.
I'm following this link
Parse has a complete run down of how to implement this into your project. Assuming your coding for objective c look at their documentation and their own tutorial for signing up or signing in users
https://parse.com/tutorials/login-and-signup-views
They take care of all the heavy lifting, producing UIAlertViews if the password is not correct, displaying one if they don't fill out all the required fields, ensures the username and password keys match etc etc etc)