Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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...

share|improve this question

2 Answers

up vote 2 down vote accepted

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.

share|improve this answer
Thank you... i have implemented it using NSUserDefaults... it helped me... – abhiTouchmagic Mar 11 '10 at 2:48

I suppose you'd check a flag of some sort (presence of file, contents of a file, setting in sqlite db, etc) in the app delegate as the app launches and make a conditional decision about what screen loads first.

share|improve this answer
Hey thanx... i will try it out.. thanx for getting back to me so early – abhiTouchmagic Mar 10 '10 at 4:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.