我正在使用 NSURLConnection 通过我的应用程序下载一些 mp3 文件。其实我可以在哪里保存下载的文件。有人说保存到 NSDocumentDirectory 会导致应用被拒绝。
我可以将文件保存到 NSCacheDictionary 并从 iTunes 中检索吗?
我使用这段代码将文件保存到 NSCacheDictionary
NSString *cachesPath = [NSSearchPathForDirectoriesInDomains(
NSCachesDirectory, NSUserDomainMask, YES)
objectAtIndex: 0];
NSString *documentsDirectoryPath = [cachesPath stringByAppendingPathComponent:@"music.mp3"];
[receivedData writeToFile:documentsDirectoryPath atomically:YES];
我可以这样使用吗?