Is it possible to play a audio from the website(http://example/example.mp3)?
I tried the below code,but it is not working,
I tried the below code,but it is not working,
Code:
NSURL *url = @"http://example/example.mp3";
NSError *error;
audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:url error:&error];
audioPlayer.numberOfLoops = -1;
if (audioPlayer == nil)
NSLog([error description]);
else
[audioPlayer play];