Here is code that is not playing sound at all

player = [[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL URLWithString:@"http://www.somesite.com/free.mp3"] error:nil]; 
//player = [[AVPlayer playerWithURL:[NSURL URLWithString:fileUrl]] retain];
[player setNumberOfLoops:0];
bool b = [player prepareToPlay];
NSLog(@"%i",(int)b);
NSLog(@"PLAYUNG = %i",(int)player.playing);
[player play];

I add import '<'AVFoundation/AVAudioPlayer.h'>' import '<'AVFoundation/AVFoundation.h'>'

in my log i see 0 and 0

where is the error? thank you for helping!

link|improve this question

78% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.