First run of iPhone app popup..

You must Login before you can answer or comment on any questions.

Okay I didn't know how to title this question, but this is what I'm asking.. The first time someone runs my app I want a little instruction popup to occur, but the next time they run the app, I don't want it to appear again.

How do I go about doing that?

2 Answers

use Ti.App.Properties for it

check if a specific property is set when your application starts

if not, show the popup and set the property to 'true' (or similar) afterwards

on the next start of your app, this property will be true and you can skip the code that creates the popup

I'm thinking maybe like make a database.. maybe.. something a long those lines? Any help?

Your Answer

Think you can help? Login to answer this question!