I'm developing an iPhone application and i need to download and Save mp3 media on the iPhone and play it, I fished the downloading work and i put the data in NSMutableData variable But How can i save these data as mp3 file
any advice :)
|
I'm developing an iPhone application and i need to download and Save mp3 media on the iPhone and play it, I fished the downloading work and i put the data in NSMutableData variable But How can i save these data as mp3 file any advice :) |
||||
|
|
|
If you want to save it to your applications Documents directory with a .mp3 file extension you can use the following:
Where mp3Data is your NSMutableData. I use code similar to the above for saving PDF documents, custom file formats, jpgs and all sorts. I've not had cause to try mp3 yet but there's no reason why it shouldn't. To read the file back into NSData to send to AVAudioPlayer:
Above para of code untested, never had cause to use sounds in my apps. |
|||||||||
|
|
here is the correct soulution appending up on @Diziet comment '//prepare data to save in file NSData *fileData=[[NSData alloc]initWithData:(NSData *)receivedData];
|
|||
|