I have an app (a game) which stores data (high scores, etc.) in the Documents directory (gotten by specifying NSDocumentDirectory
to NSSearchPathForDirectoriesInDomains
).
Now I want to release a free version of my app. I want both apps to be able to access the same files (for example: a user of the free app gets some high scores, then upgrades to the paid app - the high scores saved by the free version should be loaded into the paid app). Because the apps have different app id's (is that even the right thing to do with separate free/paid versions?), they'll have different save locations, yes?
So I guess the first question is, is having separate app id's for free and paid versions of the same app the right thing to do? If so, the second question is, how can I share files between them?