Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i'm trying to save a list of data into the application wen ever i want to save a list that has come from internet.

i'm not saying like a bookmark

it's like keeping or saving all the lists that i want, into the phone for future reference which doesnt need any internet connection then

in short if you have any idea about android, it's like i want to implement shared preference in titanium.

Please help

Thank you.

share|improve this question

1 Answer

up vote 4 down vote accepted

http://developer.appcelerator.com/apidoc/mobile/latest/Titanium.App.Properties-module

list = ['one', 'two', 'three'];

Titanium.App.Properties.setList('propertyList', list);

Titanium.App.Properties.getList('propetyList');

Ti.App.Properties exist beyond application sessions.

share|improve this answer

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.