Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个从网上下载音乐的应用程序。我现在需要将它上传到应用商店。但是我不知道应该将加载的音乐保存在哪个文件夹中。它说对于从 Web 下载的文件,我需要使用 Library/Caches 目录,但 iOS 可以从该目录中删除文件。我不希望这种情况发生。
将它们存储在 Documents 或 Library 目录中。(NSDocumentsDirectory和NSLibraryDirectory常量,分别。)iOS 不会删除存储在其中的文件,因为这些不是临时(tmp 或缓存)路径。
NSDocumentsDirectory
NSLibraryDirectory