My situation Application type :
mobile Titanium SDK : 2.1.1 Platform & version : iOS 5.1 Device : iOS simulator Host Operating System : mountain lion Titanium Studio : the lasthello all! I wanted to know if it was possible to display a message when the user installed the app on the device for the first time, so once installed the app, the message will not be displayed again when it starts
1 Answer
Accepted Answer
if (!Ti.App.Properties.hasProperty('installed'){ Alert('This is my first run'); Ti.App.Properties.setBool('installed', 1); }
Your Answer
Think you can help? Login to answer this question!