I have a question: how is it possible to get application A action results in application B? Moreover, application A can be deleted, but the results should be saved. The data represents a small set of numbers. As far as I know, ios has an ability to save data in the storage that does not depend on the application. Or, probably, there are online services for storing data (like in-game purchases, for example). (for ios 4.x and above)
Share
You understand (somewhat) incorrectly. The only things that your application can save locally outside of its own sandbox are security settings in the keychain. Your sandbox will be completely removed upon app deletion, so you need to make sure you store the data somewhere else. Since you target below iOS 5 (makes it a pain for iCloud), the best way would be to store it on a web server.