Here I have a problem in checking if application was installed on the device before or not.
What actually I am trying to do is.. In my application only one user can register. What I had done is once register I am removing the Register button. The problem is when I uninstall the application and re-install it it gives shows me register button again because the flag was set in my application database. Is there any way by which I can remember that application was installed before and registration is done. So I can hide this button for future install too.
I don’t know whether NSUserDefaults will help me to solve this issue or not. Please navigate me to the appropriate tutorial..
Thanks to all
Store the udid number of the device( which is unique) on your server.. and on each install you can know if that udid number is already on your server then it means that the application is already register.
Happy iCoding…