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!