views:

27

answers:

2

The Apple guidelines say:

Apps that read or write data outside its designated container area will be rejected

What is their designed container area?

+1  A: 

Basically, it means that you should not write or read data to/from any other directory other than your own applcations directory.

e.g. you can update the sqlite DB of your another app from your own app unless there is a public API that allows that

Liam
In some cases, apps developed by the same company/person are allowed to edit the other application's directory.
Emil
In what cases this would not be allowed? Have you were done this? How would Review team get to know that our App accesses the data from another app?
Krishnan
+1  A: 

Each Application is bound by its directory where it is installed. Apple restricts you from accessing the contents of another App through its directory from your App.

Krishnan