I recently had my application rejected, by Apple for:
"Your app has the
UIFileSharingEnabled
key set to true in theInfo.plist
, but files and folders not intended for file-sharing are contained within its Documents folder..."
I am storing my application data in the documents directory, images and the core data database. This is a very simple progress, that allows the user to backup and import data. Below are the major steps:
- The user can backup the data, which zips the folder.
- The user can then use iTunes file sharing to take out the backup.
- The user can import, the zip file which overwrites the data in the documents directory.
Has anyone else experienced similar issues? It seems like I am using this correctly.