iphone Programming Glossary: qa1719
Fetched Properties - Predicate http://stackoverflow.com/questions/10951844/fetched-properties-predicate to use Fetched Properties came because my app was rejected because of violating the iOS Data Storage Guidelines. In QA1719 they write Apps should avoid mingling app data and user data in the same file. I think this may be necessary for easier..
Where should I save data & files I want to keep long term, and how do I prevent iCloud from backing them up http://stackoverflow.com/questions/12371321/where-should-i-save-data-files-i-want-to-keep-long-term-and-how-do-i-prevent to the address iCloud backup issues. There are two Apple source documents the File System Programming Guide and QA1719 that together provide the information supporting the following iOS 5.0 Files should be saved in the Caches directory as.. no way to prevent backups if they are stored in the Documents folder. Note that the system may remove these files see QA1719 so you would need the ability to recreate each as needed. To find the caches directory use this NSSearchPathForDirectoriesInDomains.. 0 Files saved to this directory or subdirectories need an extended attribute to tell iCloud not to back them up see QA1719 . PS I have not found a way to set the Deployment target to this release if there is a way please leave a comment. iOS 5.1..
iOS 5 does not allow to store downloaded data in Documents directory? http://stackoverflow.com/questions/8209406/ios-5-does-not-allow-to-store-downloaded-data-in-documents-directory
|