Should I mark my coreData file "skip backUp Attribute"
in my project before I commit my app to App Store?
And if I don't want to backup any files,which folders I must to skip?
Thanks for help.

- 4,327
- 16
- 31
- 39

- 101
- 9
1 Answers
The iOS Data Storage Guidelines indicate that only content that the user creates using your app, e.g., documents, new files, edits, etc., should be backed up by iCloud.
Temporary files used by your app should only be stored in the /tmp directory; please remember to delete the files stored in this location when the user exits the app.
StackOverflow Reference : iOS: Do not back up attribute?
My app has a number of files that need to be stored on the device permanently for my app to function properly offline. However, those files do not contain user data and don't need to be backed up. How can I prevent them from being backed up?
On iOS, apps are responsible for ensuring that only user data and not application data is backed up to iCloud and iTunes. The exact steps necessary vary between iOS version, so this QA will describe the process for each version of iOS. For more information on exactly what data should or should not be backed up.
More References :