Reputation: 3701
I have an application developed that stores certain sounds in its Documents directory.
Is it possible to export or store these sounds to user's iPod library? They are in .caf format if important.
Upvotes: 6
Views: 3779
Reputation:
It is only possible if the app is for jailbroken devices. In this case, you can use my libipodimport library for importing music and audio files to the iPod media library.
If the app is distributed via the AppStore, then it's unfortunately not possible, through you can still try to use a private API: the SSDownload
, SSDownloadQueue
and SSDownloadMetadata
classes (class-dumped headers here) from the StoreServices
private framework enable it - you might be able to get through the AppStore using these if you manage to hide them, but it's highly unlikely.
Upvotes: 5