HI,
M using AVAudioPalyer to play my mp3 file..
t is working fine. but when call pause method to pause the pm,3 file , its dont respond/stops, it continue to play.. evn it dont response to stop...
wht shld i do or wht m skipping..???
Here posting the code to for the clarity purpose
if(...)
{
NSString *newAudioFile = [[NSBundle mainBundle] pathForResource
"xyz" ofType
"mp3"];
AVAudioPlayer *audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:newAudioFile] error:NULL];
[audioPlayer setDelegate:self];
[audioPlayer prepareToPlay];
[audioPlayer play];
if(..){
[audioPlayer pause];
}
Its not working fore Pause......
Wht m skipping..
M using AVAudioPalyer to play my mp3 file..
t is working fine. but when call pause method to pause the pm,3 file , its dont respond/stops, it continue to play.. evn it dont response to stop...
wht shld i do or wht m skipping..???
Here posting the code to for the clarity purpose
if(...)
{
NSString *newAudioFile = [[NSBundle mainBundle] pathForResource
AVAudioPlayer *audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:newAudioFile] error:NULL];
[audioPlayer setDelegate:self];
[audioPlayer prepareToPlay];
[audioPlayer play];
if(..){
[audioPlayer pause];
}
Its not working fore Pause......
Wht m skipping..