我正在使用Titanium Appcelerator开发跨平台应用程序。
我希望我的应用程序能够确定该应用程序是否首次安装在该特定设备上。
如何使用Ti.App.Properties进行此操作?
谁能告诉我该怎么做?
提前致谢!
答案 0 :(得分:4)
是的,例如:
if( !Titanium.App.Properties.hasProperty( 'firstTime' ) ) {
// set the property for next time
Ti.App.Properties.setBool( 'firstTime' , false );
// do something
}
如果用户卸载了应用程序,将删除属性。