I want to generate a custom DTMF tone and play it on the iPhone.
In order to do so, I have created and allocated a memory buffer with a custom tone (ptr).
Now ...
I added a sound file in my Xcode resources folder.
I want to play the sound file by AVAudioPlayer
I can use the image by [UIImage imageNamed:@"xxxx.png"];
But I don't know how to attach ...
I want to play a mp3 from my server with AVAudioPlayer. I am trying to do it by using
initWithData:(NSData *) error:(NSError **)
To do this I need to convert the mp3 ...