我現在有些不知所措了。無從下手。求高手幫忙。。。
我的apps 用戶存儲結構如下:
Document:中只存數據庫存,由應用中復制過來使用,加入了NSURLIsExcludedFromBackupKey。
Library/Caches:只存網上下載的數據,數據不再刪除。加入了NSURLIsExcludedFromBackupKey。
tmp:保存兩個錄音文件,app再次啟動後回刪除掉
在IOS發布後被拒給出如下描述:
2.23 - Apps must follow the iOS Data Storage Guidelines or they will be rejected
2.23 Details
On launch and content download, your app stores 6.99MB, which does not comply with the iOS Data Storage Guidelines.
Next Steps
Please verify that only the content that the user creates using your app, e.g., documents, new files, edits, etc. is backed up by iCloud as required by the iOS Data Storage Guidelines. Also, check that any temporary files used by your app are only stored in the /tmp directory; please remember to remove or delete the files stored in this location when it is determined they are no longer needed.
Data that can be recreated but must persist for proper functioning of your app - or because users expect it to be available for offline use - should be marked with the "do not back up" attribute. For NSURL objects, add the NSURLIsExcludedFromBackupKey attribute to prevent the corresponding file from being backed up. For CFURLRef objects, use the corresponding kCRUFLIsExcludedFromBackupKey attribute.
Resources
To check how much data your app is storing:
- Install and launch your app
- Go to Settings > iCloud > Storage > Manage Storage
- Select your device
- If necessary, tap "Show all apps"
- Check your app's storage
要用[NSURL fileURLWithPath:url]
而不是用[NSURL URLWithString:url]