i have developed an iphone application where i have generated a terms and condition page and i wand that page to load only at that time of installation and not everytime application is run on iphone. Is there any any way to do this… i am done with this…. should i insert it into the application bundle and show it into settings…
Thanx in advance…
I would use NSUserDefaults for this. Have a boolean variable that is set when the user agrees to the terms. If it is not set, show the terms upon loading the application. If it is set, do nothing.