Showing posts with label Flex Mobile Tipis. Show all posts
Showing posts with label Flex Mobile Tipis. Show all posts

Wednesday, September 7, 2011

Flex mobile shared object data storage

If you are developing a mobile application & you might want to store the data globally so that you can access from the different views.

Using PersistenceManager we can achieve this. We can use the PersistenceManager which stores the data by using key value.


var persistenceManager:PersistenceManager = new PersistenceManager();
persistenceManager.setProperty("dataURL","http://google.com");
persistenceManager.getProperty("dataURL");
Related Posts Plugin for WordPress, Blogger...