Las aplicaciones deben seguir las pautas de almacenamiento de datos de iOS o serán rechazadas

He desarrollado una aplicación que puede descargar archivos mp3 (de casi 6 a 8 mb de tamaño) desde en línea y almacenados en NSDocumentDirectory. Mi aplicación es rechazada hoy y dice que

"Apps must follow the iOS Data Storage Guidelines or they will be rejected"


 We found that your app does not follow the iOS Data Storage Guidelines, which is
 required per the App Store Review Guidelines. The iOS Data Storage Guidelines 
 indicate that only content that the user creates using your app, e.g., documents,
 new files, edits, etc., may be stored in the /Documents directory - and 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. "

Solía ​​almacenar los archivos de música en NSDocumentDirectory. Entonces, esta es la primera vez que hago esto, no puedo resolver el problema real. ¿Qué debo hacer para volver a enviar mi aplicación para su aceptación.

aqui esta mi codigo

 NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);



 NSString *documentsDirectoryPath = [[paths objectAtIndex:0]stringByAppendingPathComponent:[NSString stringWithFormat:@"psalmsMusic%d.mp3",i]];
NSLog(@"ddddddd psalmsMusic%d.mp3",i);
i++;


 NSLog(@"path %@",documentsDirectoryPath);
 [receivedData writeToFile:documentsDirectoryPath atomically:YES];

Realmente necesito un poco de ayuda.

Respuestas a la pregunta(7)

Su respuesta a la pregunta