read mp3 file with AVAudioPlayer
i would like to read mp3 file with AVAudioPlayer
,,,, AVAudioPlayer *player;
,, @property(retain,nonatomic) AVAudioPlayer *player;
@synthesize player ,,,,,
-(IBAction) lirepiste {
NSString *fichierAudio=@"http://download.media.islamway.net/lessons/othymeen/40nowaweyya/1.mp3";
player = [[AVAudioPlayer alloc]initWithContentsOfURL:[NSURL URLWithString:fichierAudio] error:nil];
if (player ==nil)
{
NSLog(@"nil");
}
else {
[player play];
}
}
no error no crash but every time Nil,,,
|